aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-23 11:21:51 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-23 11:49:42 +1200
commitdaf5f6e93fd677be9ee2ddc50f3dbae5b3bbb96e (patch)
treedf35f075dfa7dd6dcb0c6d926f18b11bfc7a12b5 /vim
parentRemove j/gj remappings (diff)
downloaddotfiles-daf5f6e93fd677be9ee2ddc50f3dbae5b3bbb96e.tar.gz
dotfiles-daf5f6e93fd677be9ee2ddc50f3dbae5b3bbb96e.zip
Lean on defaults for Vim 'shortmess'
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc12
1 files changed, 1 insertions, 11 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 795bb8ce..6ef3cf8b 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -94,21 +94,11 @@ set nrformats-=octal
" Always tell me the number of lines changed by a command
set report=0
-" Abbreviate some of the regularly displayed messages
-set shortmess=
-set shortmess+=f " (file 3 of 5) -> (3 of 5)
-set shortmess+=i " [Incomplete last line] -> [noeol]
+" Abbreviate some more regularly displayed messages
set shortmess+=I " Don't show startup splash screen
-set shortmess+=l " 999 lines, 888 characters -> 999L, 888C
set shortmess+=m " [Modified] -> [+]
-set shortmess+=n " [New File] -> [New]
-set shortmess+=o " Don't stack file writing messages
-set shortmess+=O " Don't stack file reading messages
set shortmess+=r " [readonly] -> [RO]
-set shortmess+=t " Truncate file message at start if too long
-set shortmess+=T " Truncate other message in middle if too long
set shortmess+=w " written -> [w], appended -> [a]
-set shortmess+=x " [dos format] -> [dos]
" Show my current position in the status bar
if has('cmdline_info')