summaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
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