aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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