diff --git a/.config/powerline/colorschemes/default.json b/.config/powerline/colorschemes/default.json index 7e271ef..7978e5d 100644 --- a/.config/powerline/colorschemes/default.json +++ b/.config/powerline/colorschemes/default.json @@ -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": [] }, diff --git a/.zshrc b/.zshrc index bc77e3f..9c43f1b 100644 --- a/.zshrc +++ b/.zshrc @@ -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'