Merge branch 'master' of git://github.com/netzverweigerer/oh-my-zsh

Conflicts:
	lib/powerlinecolours
	themes/powerline.zsh-theme
	zshrc
This commit is contained in:
Armin 2015-01-31 00:54:07 +01:00
commit 43e1610e82
3 changed files with 7 additions and 7 deletions

View file

@ -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

View file

@ -204,4 +204,7 @@ PROMPT='%{%f%b%k%}$(build_prompt) '
RPROMPT='%{%f%r%k%}$(build_rprompt) '
<<<<<<< HEAD
=======
>>>>>>> 0166395a0ca78d2d253a3f38272d6542bdf2efda

9
zshrc
View file

@ -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'