diff options
author | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2015-10-07 13:31:10 -0400 |
---|---|---|
committer | Kjetil Orbekk <kjetil.orbekk@gmail.com> | 2015-10-07 13:31:10 -0400 |
commit | 820bd83a3d969c6ec2e48d0421e41cffcc7c0c95 (patch) | |
tree | d92b5a5957adaf0709546df0f89f06d3a4cfba4c | |
parent | 7158354ad15a38e0dcf35e97b1a69ac70509c529 (diff) |
Fix vim color settings.
-rwxr-xr-x | vimrc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -55,8 +55,11 @@ set guioptions-=M set guioptions-=T set guioptions-=r set guioptions-=L -set background=dark -colorscheme base16-tomorrow +if &t_Co > 255 || has('gui_running') + set background=dark + let base16colorspace=256 + colorscheme base16-tomorrow +endif set colorcolumn=81 |