aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-24 15:28:58 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-24 15:28:58 +1200
commit31e4266cf7c0900dbccf83775647b12526482912 (patch)
tree3fa8ca13ed591a556cce47b06463011d98acc8df
parentUse comma-separated syntax for multiple appends (diff)
downloaddotfiles-31e4266cf7c0900dbccf83775647b12526482912.tar.gz
dotfiles-31e4266cf7c0900dbccf83775647b12526482912.zip
Use correct capitalisation for Neovim
-rw-r--r--vim/vimrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/vim/vimrc b/vim/vimrc
index acb2173d..a5079345 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -78,7 +78,7 @@ if has('multi_byte')
endif
" Don't wait for a key after Escape in insert mode
-" Not in NeoVim
+" Not in Neovim
if exists('+esckeys')
set noesckeys
endif
@@ -121,7 +121,7 @@ set include=
set incsearch
" Don't show a status line if there's only one window
-" This is Vim's default, but not NeoVim's
+" This is Vim's default, but not Neovim's
if &laststatus != 1
set laststatus=1
endif
@@ -149,7 +149,7 @@ set nrformats-=octal
set path-=/usr/include
" Disable command line display of file position
-" This is Vim's default, but not NeoVim's
+" This is Vim's default, but not Neovim's
if &ruler
set noruler
endif
@@ -184,7 +184,7 @@ endif
" No terminal mouse, even if we could; the manual says to set 't_RV', but
" doing that doesn't seem to prevent 'ttyfast' from being set
-" Not in NeoVim
+" Not in Neovim
if exists('+ttymouse') && &ttymouse !=# ''
set ttymouse=
endif