From a019f8e837d9e641a955f928ded00be4db149957 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 29 Jun 2018 16:26:37 +1200 Subject: Set 'include' and 'path' specifically in C/C++ Otherwise, use defaults that should be meaningful in other languages too, just to be tidy and not to show string.h in :find results when editing Awk scripts. --- vim/vimrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'vim/vimrc') diff --git a/vim/vimrc b/vim/vimrc index f48f31b6..73f6b48b 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -74,6 +74,9 @@ if v:version > 703 || v:version == 703 && has('patch541') set formatoptions+=j endif +" Don't assume I'm editing C; let the filetype set this +set include= + " Don't join lines with two spaces at the end of sentences set nojoinspaces @@ -124,9 +127,9 @@ if has('extra_search') set incsearch " Show matches as I type endif -" Use whole tree from current directory for :find +" More sensible language-agnostic setting for gf/:find if has('file_in_path') - set path+=** + set path=.,,** endif " Don't load GUI menus; set here before GUI starts -- cgit v1.2.3