diff options
Diffstat (limited to '.config/zsh/.zshrc')
| -rw-r--r-- | .config/zsh/.zshrc | 49 |
1 files changed, 25 insertions, 24 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 21a4648..b892f48 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -1,34 +1,13 @@ -# Lines configured by zsh-newuser-install -HISTFILE=~/.cache/zsh/histfile -HISTSIZE=1000 -SAVEHIST=1000 -setopt extendedglob nomatch -unsetopt autocd beep -bindkey -e -# End of lines configured by zsh-newuser-install -# The following lines were added by compinstall -zstyle :compinstall filename '/home/andrew/.zshrc' - -autoload -Uz compinit -#compinit -compinit -d $XDG_CACHE_HOME/zsh/zcompdump -# End of lines added by compinstall - -# Turn on clint prompt -autoload -Uz promptinit -promptinit -prompt suse - # enable color support of ls and also add handy aliases if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" alias ls='ls --color=auto' - #alias dir='dir --color=auto' - #alias vdir='vdir --color=auto' - + alias gcc='gcc -fdiagnostics-color=always' alias grep='grep --color=auto' alias fgrep='fgrep --color=auto' alias egrep='egrep --color=auto' + alias pacman='pacman --color=always' + alias yay='yay --color=always' fi # Aliases @@ -41,3 +20,25 @@ alias dotdiff="/usr/bin/git --git-dir='$HOME/.dotfiles' --work-tree='$HOME' dif alias dotadd="/usr/bin/git --git-dir='$HOME/.dotfiles' --work-tree='$HOME' add -f" alias vim="nvim" +# ZSH config +HISTFILE=~/.cache/zsh/histfile +HISTSIZE=1000 +SAVEHIST=1000 +setopt extendedglob nomatch +unsetopt autocd beep +bindkey -e +zstyle :compinstall filename '/home/andrew/.zshrc' +autoload -Uz compinit +compinit -d $XDG_CACHE_HOME/zsh/zcompdump + +set_ps1() { + # red color if current user us root, otherwise - green + [ "$USER" = "root" ] && UCOLOR="%B%F{red}" || UCOLOR="%B%F{green}" + [ "$USER" = "root" ] && END="#" || END="$" + BLUE="%B%F{blue}" + PURPLE="%B%F{magenta}" + STOP="%f%b" + export PS1="%T $UCOLOR%n$STOP@$PURPLE%m$STOP:$BLUE%~$STOP $END " +} + +set_ps1 |