diff --git a/lib/powerlinecolours b/lib/powerlinecolours index 27a0450fc..b6be9b239 100644 --- a/lib/powerlinecolours +++ b/lib/powerlinecolours @@ -35,7 +35,7 @@ colours=(254 24 208 236) ;; c7d8a6d722a1ec9a16fae165177c418d4fd63175) -colours=(254 52 196 32) +colours=(253 68 196 32) # \ \ \ \________________> prompt background colour for root # \ \ \__________________> prompt foreground colour for root # \ \_____________________> prompt background colour for user diff --git a/themes/powerline.zsh-theme b/themes/powerline.zsh-theme index 4d7118c12..c4f074935 100644 --- a/themes/powerline.zsh-theme +++ b/themes/powerline.zsh-theme @@ -204,4 +204,7 @@ PROMPT='%{%f%b%k%}$(build_prompt) ' RPROMPT='%{%f%r%k%}$(build_rprompt) ' +<<<<<<< HEAD +======= +>>>>>>> 0166395a0ca78d2d253a3f38272d6542bdf2efda diff --git a/zshrc b/zshrc index 0292d22a7..005340da1 100644 --- a/zshrc +++ b/zshrc @@ -30,7 +30,6 @@ plugins=(git) # Customize to your needs... source $ZSH/zsh - # workaround for broken xfce4 terminal to force $TERM: if [[ "$COLORTERM" == "xfce4-terminal" ]]; then export TERM="xterm-256color" @@ -51,7 +50,7 @@ fi # $ZSH - Path to your zsh installation. export ZSH=$HOME/.zsh/ -export PATH=$HOME/bin:/usr/local/bin:/usr/local/sbin:/usr/sbin:/sbin$PATH +export PATH=$HOME/bin:/usr/local/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH # set $EDITOR export EDITOR='vim' @@ -106,7 +105,6 @@ export LC_ALL="en_US.UTF-8" # set ls options LS_OPTIONS="--color=auto --group-directories-first -F" alias ls="ls $LS_OPTIONS" -alias l="ls $LS_OPTIONS -al" # Mac OS X specific stuff: if [[ "$OS_TYPE" == "osx" ]]; then @@ -172,11 +170,10 @@ if [ "$TERM" != "dumb" ]; then fi # do not autocorrect sudo commands (fixes "zsh: correct 'vim' to '.vim' [nyae]?") -# alias sudo='nocorrect sudo' +alias sudo='nocorrect sudo' -# or, the more brutal attempt: +# the more brutal attempt: unsetopt correct{,all} - alias sd='ssh deep'