aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-14 00:11:26 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-14 00:11:26 +1200
commitc24d8c8ab26fead8ae0bccef7cf348c13544e01a (patch)
tree463629b9b8cd3930b59a76fe193b9ff3c50677cf
parentConsolidate +persistent_undo section (diff)
downloaddotfiles-c24d8c8ab26fead8ae0bccef7cf348c13544e01a.tar.gz
dotfiles-c24d8c8ab26fead8ae0bccef7cf348c13544e01a.zip
Consolidate C option resets
-rw-r--r--vim/vimrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 6a7e6425..fdbb77dc 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -449,14 +449,13 @@ endif
" like. The defaults for these options no longer make sense, and so we blank
" them, compelling filetype plugins to set them as they need instead.
"
-set comments= commentstring= define= include=
-
" The default value for the 'path' option is similar, in that it has an aged
" default; this option specifies directories in which project files and
" includes can be unearthed by navigation commands like 'gf'. Specifically,
" its default value comprises /usr/include, which is another C default. Let's
" get rid of that, too.
"
+set comments= commentstring= define= include=
set path-=/usr/include
" Next, we'll adjust the global indentation settings. In general and as