aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-13 09:55:03 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-13 09:55:03 +1200
commit50479150154d31cff24458f2a06c42b6ebf4992a (patch)
tree1f93e7fa6dc1f3ee9974cbfe8bb3a44a7b6a2d7d /vim/vimrc
parentDisable 'spellcapcheck' for README.md files (diff)
downloaddotfiles-50479150154d31cff24458f2a06c42b6ebf4992a.tar.gz
dotfiles-50479150154d31cff24458f2a06c42b6ebf4992a.zip
Simplify 'shortmess' settings
Just to avoid solving problems I don't actually have.
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc7
1 files changed, 2 insertions, 5 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 53c524ea..f07f77e8 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -104,11 +104,8 @@ set nomodeline
" Treat numbers with a leading zero as decimal, not octal
set nrformats-=octal
-" Abbreviate some more regularly displayed messages
-set shortmess+=I " Don't show startup splash screen
-set shortmess+=m " [Modified] -> [+]
-set shortmess+=r " [readonly] -> [RO]
-set shortmess+=w " written -> [w], appended -> [a]
+" Don't show startup splash screen (I donated)
+set shortmess+=I
" Clear default 'comments' value, let the filetype handle it
if has('comments')