diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-20 22:12:27 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-20 22:12:27 +1200 |
commit | 6a26b3d67ddf8ccd097ae1fbf7e96b1f22b10880 (patch) | |
tree | 955a78c6046d2b715754322ac9d5790db02c88b1 /vim | |
parent | Remove .vimrc 'backup', 'writebackup' settings (diff) | |
download | dotfiles-6a26b3d67ddf8ccd097ae1fbf7e96b1f22b10880.tar.gz dotfiles-6a26b3d67ddf8ccd097ae1fbf7e96b1f22b10880.zip |
Use case sensitivity explicit operator in .vimrc
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ if has('syntax') && !has('g:syntax_on') " If we couldn't use 'sahara', just flag a dark background (the author is " almost certainly using one), and we'll use the default colorscheme - if !exists('g:colors_name') || g:colors_name != 'sahara' + if !exists('g:colors_name') || g:colors_name !=# 'sahara' set background=dark endif |