mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Improve behavior inside Emacs, abbreviate master branch to M
* when branch is master, replace displayed branch name with M * enable colors only when on color capable terminal.
This commit is contained in:
parent
1fc9e772d2
commit
812d81a807
2 changed files with 31 additions and 11 deletions
|
|
@ -1,15 +1,23 @@
|
|||
# ls colors
|
||||
autoload colors; colors;
|
||||
export LSCOLORS="Gxfxcxdxbxegedabagacad"
|
||||
#export LS_COLORS
|
||||
autoload colors zsh/terminfo
|
||||
|
||||
# Enable ls colors
|
||||
if [ "$DISABLE_LS_COLORS" != "true" ]
|
||||
then
|
||||
# Find the option for using colors in ls, depending on the version: Linux or BSD
|
||||
ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
|
||||
# enable colors on color capable terminals
|
||||
if [[ "$terminfo[colors]" -ge 8 ]]; then
|
||||
colors
|
||||
export LSCOLORS="Gxfxcxdxbxegedabagacad"
|
||||
|
||||
# ls colors
|
||||
if [ "$DISABLE_LS_COLORS" != "true" ]; then
|
||||
# Find the option for using colors in ls, depending on the
|
||||
# version: Linux or BSD
|
||||
ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || \
|
||||
alias ls='ls -G'
|
||||
fi
|
||||
fi
|
||||
|
||||
# disable zle inside emacs
|
||||
[[ $TERM = 'dumb' && $EMACS = t ]] && unsetopt zle
|
||||
|
||||
#setopt no_beep
|
||||
setopt auto_cd
|
||||
setopt multios
|
||||
|
|
@ -35,4 +43,4 @@ ZSH_THEME_GIT_PROMPT_CLEAN="" # Text to display if the branch is c
|
|||
setopt prompt_subst
|
||||
|
||||
# Load the theme
|
||||
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
|
||||
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue