summaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2018-08-22 17:48:24 -0700
committerBen Sima <ben@bsima.me>2018-08-22 17:48:24 -0700
commit13cb1cf38cdcd7611ba77b1523650bc5e23e2f79 (patch)
treec3c0975605a61d83c7f138a9c90e61542aaf20a6 /vimrc
parent49638ca7e88cbef7bb2012b06fe4c126bffd835f (diff)
Fix colorscheme on neb
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc7
1 files changed, 6 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 89ad60a..cff9286 100644
--- a/vimrc
+++ b/vimrc
@@ -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