diff options
author | Urbain Vaes <urbain@vaes.uk> | 2018-01-10 17:31:15 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2018-01-10 18:09:54 +0100 |
commit | 773025b77b770286652c8c2929d445b231855363 (patch) | |
tree | bad2b729654e0f216d5f52fab990c077a6c0e0be /zsh/.zsh/plugins | |
parent | b63d5389cfca88ac1da44ebcff3139f420dd72f3 (diff) |
Sort references by time
Diffstat (limited to 'zsh/.zsh/plugins')
-rw-r--r-- | zsh/.zsh/plugins | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/zsh/.zsh/plugins b/zsh/.zsh/plugins deleted file mode 100644 index 649f00d..0000000 --- a/zsh/.zsh/plugins +++ /dev/null @@ -1,39 +0,0 @@ -#! /bin/zsh - -# Load zgen -[ ! -d ~/.zsh/zgen ] && git clone https://github.com/tarjoilija/zgen.git ~/.zsh/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 - - # Navigation plugins - zgen load urbainvaes/fzf-marks - - # Other plugins - zgen load rupa/z - zgen load djui/alias-tips - - # zsh-users plugins - zgen load zsh-users/zsh-completions src - zgen load zsh-users/zsh-syntax-highlighting - zgen load zsh-users/zsh-autosuggestions - - # Save all to init script - zgen save -fi - -# Autosuggestion -{ - ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=6' - bindkey '^y' autosuggest-accept -} |