diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-24 22:17:06 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-24 22:17:06 +0100 |
| commit | 4fe446437f94e999a180692c9ea69c7075c0f42c (patch) | |
| tree | 80d344ff41536d87b8a0b7ac38c891fff4b1ca5c /config/zsh/.zshrc | |
| parent | 468a789dbc4b1928c035d8590895efc533520a27 (diff) | |
| download | dotfiles-4fe446437f94e999a180692c9ea69c7075c0f42c.tar.gz dotfiles-4fe446437f94e999a180692c9ea69c7075c0f42c.tar.bz2 dotfiles-4fe446437f94e999a180692c9ea69c7075c0f42c.zip | |
Fixing everything with the new XDG directories
Diffstat (limited to 'config/zsh/.zshrc')
| -rw-r--r-- | config/zsh/.zshrc | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index 9cd21b5..aef07dd 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -3,10 +3,8 @@ ############### -[ -z $DOTDIR ] && export DOTDIR=$HOME/git/dotfiles # FIXME have to change path manually if install elsewhere - # load aliases -source $DOTDIR/.zsh_aliases +source $XDG_CONFIG_HOME/zsh/aliases.zsh # prompt case `tty` in @@ -19,7 +17,7 @@ case `tty` in ;; *) # pure prompt - export FPATH="$FPATH:$HOME/.zsh/pure" + export FPATH="$FPATH:$XDG_DATA_HOME/zsh/pure" ZSH_THEME="pure" autoload -U promptinit promptinit @@ -64,8 +62,7 @@ function chpwd() { #source /etc/zsh_command_not_found -# ignore filetypes in autocomplete -fignore=(o hi) +fignore=(o hi) # ignore extensions in autocomplete # pluggins source $XDG_DATA_HOME/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # prompt syntax highlight @@ -76,5 +73,4 @@ source $XDG_DATA_HOME/zsh/zsh-you-should-use/you-should-use.plugin.zsh # alias # set tab to 4 spaces tabs 4 - export GPG_TTY=$(tty) # fixing gpg fatal error about tty |
