Undo move
This commit is contained in:
parent
e1b5ceb331
commit
432524aa4d
18 changed files with 4 additions and 5 deletions
0
.config/zsh/.gitignore → .zsh/.gitignore
vendored
0
.config/zsh/.gitignore → .zsh/.gitignore
vendored
1
.zshenv
1
.zshenv
|
@ -1 +0,0 @@
|
||||||
ZDOTDIR=$HOME/.config/zsh
|
|
|
@ -29,7 +29,7 @@ setopt notify
|
||||||
setopt PROMPT_SUBST
|
setopt PROMPT_SUBST
|
||||||
setopt EXTENDED_GLOB
|
setopt EXTENDED_GLOB
|
||||||
|
|
||||||
zstyle :compinstall filename '$ZDOTDIR/.zshrc'
|
zstyle :compinstall filename '$HOME/.zshrc'
|
||||||
|
|
||||||
autoload -Uz compinit
|
autoload -Uz compinit
|
||||||
compinit
|
compinit
|
||||||
|
@ -39,8 +39,8 @@ autoload -U colors
|
||||||
colors
|
colors
|
||||||
|
|
||||||
# Autoload zsh functions.
|
# Autoload zsh functions.
|
||||||
fpath=($ZDOTDIR/functions $fpath)
|
fpath=($HOME/.zsh/functions $fpath)
|
||||||
autoload -U $ZDOTDIR/functions/*(:t)
|
autoload -U $HOME/.zsh/functions/*(:t)
|
||||||
|
|
||||||
# Enable auto-execution of functions
|
# Enable auto-execution of functions
|
||||||
typeset -ga preexec_functions
|
typeset -ga preexec_functions
|
||||||
|
@ -92,7 +92,7 @@ bindkey "^W" backward-delete-char
|
||||||
|
|
||||||
# Show syntax highlighting when we're not running in emacs
|
# Show syntax highlighting when we're not running in emacs
|
||||||
if [ -z $EMACS ]; then
|
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[double-hyphen-option]='fg=blue'
|
||||||
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=blue'
|
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=blue'
|
Loading…
Reference in a new issue