diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-04-19 15:24:25 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-04-19 15:24:25 +0100 |
commit | e146e947c52ac4adbe426b3f893faff1e46ed5f8 (patch) | |
tree | 1605bf4eb78cc619988c92632f3cee2a56143fd5 /zsh/.zsh/plugins | |
parent | 83bd503208d45fa837348441196dd07223b13e3e (diff) |
Use GNU stow for dotfiles management
Diffstat (limited to 'zsh/.zsh/plugins')
-rw-r--r-- | zsh/.zsh/plugins | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/zsh/.zsh/plugins b/zsh/.zsh/plugins new file mode 100644 index 0000000..1016b88 --- /dev/null +++ b/zsh/.zsh/plugins @@ -0,0 +1,52 @@ +#! /bin/zsh + +# Load zgen +source "$HOME/.zsh/zgen/zgen.zsh" + +# Load plugins +if ! zgen saved; then + + echo "Creating a zgen save" + + # Load oh-my-zsh framework + zgen oh-my-zsh + + # Oh-my-zsh plugins + zgen oh-my-zsh plugins/git + zgen oh-my-zsh plugins/vi-mode + zgen oh-my-zsh plugins/archlinux + zgen oh-my-zsh plugins/ubuntu + zgen oh-my-zsh plugins/tmux + zgen oh-my-zsh plugins/themes + + # zsh-users plugins + zgen load zsh-users/zsh-completions src + zgen load zsh-users/zsh-syntax-highlighting + + # Appearance + zgen oh-my-zsh themes/eastwood + + # Navigation plugins + zgen load uvaes/fzf-marks + + # Other plugins + zgen load rupa/z + zgen load supercrabtree/k + zgen load djui/alias-tips + zgen load tarruda/zsh-autosuggestions + zgen load joel-porquet/zsh-dircolors-solarized + + # Save all to init script + zgen save +fi + +# Plugins configuration + +# Autosuggestion +{ + ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=6' + bindkey '^y' autosuggest-accept +} + +# Z +export _Z_EXCLUDE_DIRS=("$HOME/sshfs", "$HOME/nfs") |