1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

zsh: move zsh into .config

This commit is contained in:
Joe Groocock 2018-04-11 16:42:01 +01:00
parent ebc435ad33
commit 1bc7dd7845
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86
3 changed files with 10 additions and 0 deletions

4
.config/zsh/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/antigen/
/log/
/histfile
/.zcompdump*

View File

@ -54,6 +54,7 @@ antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle Tarrasch/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-history-substring-search
antigen bundle mafredri/zsh-async
antigen apply
@ -122,3 +123,4 @@ source "$DOTFILES/aliases"
# Load some manual plugins
source "$ZSH_DIR/plugins/sudo.zsh"
source "$ZSH_DIR/plugins/fish-theme.zsh"
[ -f '/usr/share/fzf/key-bindings.zsh' ] && source /usr/share/fzf/key-bindings.zsh

View File

@ -20,6 +20,10 @@ export VIMINIT=":so $MYVIMRC"
export EDITOR="vim"
export VISUAL="vim"
# Allow ZSH to load from ~/.config/zsh
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
export MANPAGER="less -+N"
export TERMINAL="termite"
export BROWSER="chromium"