diff options
author | Ben Sima <ben@bsima.me> | 2018-08-22 17:48:24 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2018-08-22 17:48:24 -0700 |
commit | 13cb1cf38cdcd7611ba77b1523650bc5e23e2f79 (patch) | |
tree | c3c0975605a61d83c7f138a9c90e61542aaf20a6 | |
parent | 49638ca7e88cbef7bb2012b06fe4c126bffd835f (diff) |
Fix colorscheme on neb
-rw-r--r-- | vimrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -55,4 +55,9 @@ map <A-]> :vsp <CR>:exec("tag ".expand("<cword>"))<CR> """ Colors set background=light -colorscheme solarized +if substitute(hostname(), '\n', '', '') ==# "neb" + # neb likes 'sol' more than 'solarized', for some reason + colorscheme sol +else + colorscheme solarized +endif |