Undo move

This commit is contained in:
Tom Willemsen 2012-11-10 12:57:14 +01:00
parent e1b5ceb331
commit 432524aa4d
18 changed files with 4 additions and 5 deletions

View file

@ -1 +0,0 @@
ZDOTDIR=$HOME/.config/zsh

View file

@ -29,7 +29,7 @@ setopt notify
setopt PROMPT_SUBST
setopt EXTENDED_GLOB
zstyle :compinstall filename '$ZDOTDIR/.zshrc'
zstyle :compinstall filename '$HOME/.zshrc'
autoload -Uz compinit
compinit
@ -39,8 +39,8 @@ autoload -U colors
colors
# Autoload zsh functions.
fpath=($ZDOTDIR/functions $fpath)
autoload -U $ZDOTDIR/functions/*(:t)
fpath=($HOME/.zsh/functions $fpath)
autoload -U $HOME/.zsh/functions/*(:t)
# Enable auto-execution of functions
typeset -ga preexec_functions
@ -92,7 +92,7 @@ bindkey "^W" backward-delete-char
# Show syntax highlighting when we're not running in emacs
if [ -z $EMACS ]; then
source $ZDOTDIR/syntax-highlighting/zsh-syntax-highlighting.zsh
source $HOME/.zsh/syntax-highlighting/zsh-syntax-highlighting.zsh
ZSH_HIGHLIGHT_STYLES[double-hyphen-option]='fg=blue'
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=blue'