aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-20 22:12:27 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-20 22:12:27 +1200
commit6a26b3d67ddf8ccd097ae1fbf7e96b1f22b10880 (patch)
tree955a78c6046d2b715754322ac9d5790db02c88b1
parentRemove .vimrc 'backup', 'writebackup' settings (diff)
downloaddotfiles-6a26b3d67ddf8ccd097ae1fbf7e96b1f22b10880.tar.gz
dotfiles-6a26b3d67ddf8ccd097ae1fbf7e96b1f22b10880.zip
Use case sensitivity explicit operator in .vimrc
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index e348b602..35d8de82 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -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