blob: 7da3a07b9ccab951f75208fd10ebb45e666fc2f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
autoload -Uz compinit
compinit
# Poetry autocompletion
fpath+=~/.zfunc
# kubectl autocompletion
# [[ $commands[kubectl] ]] && source <(kubectl completion zsh)
# 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
|