diff options
author | Patrick Simianer <pks@pks.rocks> | 2018-10-30 05:30:47 +0100 |
---|---|---|
committer | Patrick Simianer <pks@pks.rocks> | 2018-10-30 05:30:47 +0100 |
commit | c8bbcb1bb66db7d00329b83a22ef73ef695e7c0e (patch) | |
tree | e77267ac7a64dd1c026134a0fda23120f5cf31c1 /zsh | |
parent | 42b1c23e5b636e3fa74795f7fd1876e89089dadf (diff) |
zsh: nvim fix, colors
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -162,7 +162,7 @@ if [[ $? == 0 ]]; then export R_LIBS_USER=$HOME/.R fi -if [[ -x $(which nvim) ]]; then +if [[ -x $(which nvim &>/dev/null) ]]; then export EDITOR='nvim -p' alias qmv='qmv -envim -fdo' else @@ -226,8 +226,8 @@ case `hostname` in HOSTCOLOR_FG=black ;; *.uberspace.de) - HOSTCOLOR_BG=blue - HOSTCOLOR_FG=black + HOSTCOLOR_BG=green + HOSTCOLOR_FG=white ;; *) HOSTCOLOR_BG=black @@ -237,7 +237,7 @@ esac # google cloud if [[ $(on_gcloud) == "yes" ]]; then - HOSTCOLOR_BG=cyan + HOSTCOLOR_BG=blue HOSTCOLOR_FG=white alias tmux="tmux -f ~/.tmux.gcloud.conf" fi |