diff options
Diffstat (limited to 'vimrc')
-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 |