aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-24 15:29:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-24 15:29:07 +1200
commit57b1558767fe41ddfce82675836788530302867d (patch)
tree8d09e2293b42cd121e53bb2f817bde76ffd94693
parentUse correct capitalisation for Neovim (diff)
downloaddotfiles-57b1558767fe41ddfce82675836788530302867d.tar.gz
dotfiles-57b1558767fe41ddfce82675836788530302867d.zip
Amend a couple of comments
-rw-r--r--vim/vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/vimrc b/vim/vimrc
index a5079345..152ecd81 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -148,8 +148,8 @@ set nrformats-=octal
" Don't search /usr/include by default
set path-=/usr/include
-" Disable command line display of file position
-" This is Vim's default, but not Neovim's
+" Disable command line display of file position if a system vimrc or Neovim
+" has switched it on
if &ruler
set noruler
endif
@@ -177,7 +177,7 @@ set splitright " Right of the current window, not left
" Don't try to syntax highlight run-on lines
set synmaxcol=500
-" PuTTY is a fast terminal
+" PuTTY is a fast terminal, but Vim doesn't know that yet
if &term =~# '^putty'
set ttyfast
endif