Colors and kubectl completion
This commit is contained in:
parent
5df2b6c6a1
commit
e51df26e63
2 changed files with 5 additions and 2 deletions
|
@ -40,7 +40,7 @@
|
||||||
"battery_full": { "fg": "red", "bg": "gray0", "attrs": [] },
|
"battery_full": { "fg": "red", "bg": "gray0", "attrs": [] },
|
||||||
"battery_empty": { "fg": "white", "bg": "gray0", "attrs": [] },
|
"battery_empty": { "fg": "white", "bg": "gray0", "attrs": [] },
|
||||||
"player": { "fg": "gray10", "bg": "black", "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": { "fg": "gray9", "bg": "gray2", "attrs": [] },
|
||||||
"branch_dirty": { "fg": "brightyellow", "bg": "gray2", "attrs": [] },
|
"branch_dirty": { "fg": "brightyellow", "bg": "gray2", "attrs": [] },
|
||||||
"branch_clean": { "fg": "gray9", "bg": "gray2", "attrs": [] },
|
"branch_clean": { "fg": "gray9", "bg": "gray2", "attrs": [] },
|
||||||
|
|
5
.zshrc
5
.zshrc
|
@ -106,12 +106,15 @@ alias cd=cd_func
|
||||||
. /usr/lib/python3.6/site-packages/powerline/bindings/zsh/powerline.zsh
|
. /usr/lib/python3.6/site-packages/powerline/bindings/zsh/powerline.zsh
|
||||||
|
|
||||||
## fzf
|
## fzf
|
||||||
|
|
||||||
export FZF_TMUX=1
|
export FZF_TMUX=1
|
||||||
export FZF_COMPLETION_TRIGGER="."
|
export FZF_COMPLETION_TRIGGER="."
|
||||||
. /usr/share/fzf/completion.zsh
|
. /usr/share/fzf/completion.zsh
|
||||||
. /usr/share/fzf/key-bindings.zsh
|
. /usr/share/fzf/key-bindings.zsh
|
||||||
|
|
||||||
|
# Kubernetes
|
||||||
|
source <(kubectl completion zsh)
|
||||||
|
[ -f $HOME/bin/kops ] && source <($HOME/bin/kops completion zsh)
|
||||||
|
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
alias ag='ag --pager less'
|
alias ag='ag --pager less'
|
||||||
|
|
Loading…
Reference in a new issue