diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-20 13:45:32 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-20 13:45:32 +0100 |
commit | b8741890ec8922426ca393e181df5769cd53a0f9 (patch) | |
tree | 2e7767c72436f1ab3a2895ef085e103cee8beaf3 /.config/zsh/plugins.zsh | |
parent | 325d75531153da1a317e219f2e5da85abbe7ea48 (diff) |
refactor zsh
Diffstat (limited to '.config/zsh/plugins.zsh')
-rw-r--r-- | .config/zsh/plugins.zsh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/zsh/plugins.zsh b/.config/zsh/plugins.zsh new file mode 100644 index 0000000..4bf7948 --- /dev/null +++ b/.config/zsh/plugins.zsh @@ -0,0 +1,19 @@ +# FZF +source /usr/share/fzf/key-bindings.zsh +source /usr/share/fzf/completion.zsh + +# Antigen +source $HOME/.config/zsh/antigen.zsh + +# Load Packages +antigen bundle tmux +antigen bundle git +antigen bundle pip +antigen bundle kubectl +antigen bundle command-not-found +antigen bundle zsh-users/zsh-syntax-highlighting +antigen bundle zsh-users/zsh-history-substring-search ./zsh-history-substring-search.zsh +antigen bundle zsh-users/zsh-autosuggestions + +# Done +antigen apply |