diff options
-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 |