Colors and kubectl completion

This commit is contained in:
Daniel Lundin 2017-07-10 10:44:53 +02:00
parent 5df2b6c6a1
commit e51df26e63
2 changed files with 5 additions and 2 deletions

View file

@ -40,7 +40,7 @@
"battery_full": { "fg": "red", "bg": "gray0", "attrs": [] },
"battery_empty": { "fg": "white", "bg": "gray0", "attrs": [] },
"player": { "fg": "gray10", "bg": "black", "attrs": [] },
"user": { "fg": "white", "bg": "darkblue", "attrs": ["bold"] },
"user": { "fg": "skyblue1", "bg": "darkblue", "attrs": ["bold"] },
"branch": { "fg": "gray9", "bg": "gray2", "attrs": [] },
"branch_dirty": { "fg": "brightyellow", "bg": "gray2", "attrs": [] },
"branch_clean": { "fg": "gray9", "bg": "gray2", "attrs": [] },

5
.zshrc
View file

@ -106,12 +106,15 @@ alias cd=cd_func
. /usr/lib/python3.6/site-packages/powerline/bindings/zsh/powerline.zsh
## fzf
export FZF_TMUX=1
export FZF_COMPLETION_TRIGGER="."
. /usr/share/fzf/completion.zsh
. /usr/share/fzf/key-bindings.zsh
# Kubernetes
source <(kubectl completion zsh)
[ -f $HOME/bin/kops ] && source <($HOME/bin/kops completion zsh)
## Aliases
alias ag='ag --pager less'