aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2019-04-01 15:43:35 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-05-29 22:57:28 +0100
commit54c035f3998c2aeb51e36f376d4641b1ef43f24e (patch)
tree16be8ebe43568d526497dd82e630e938aa5e79d5
parentbc3c1dae7b01d5ffd111eb83064dbe65636f919f (diff)
downloaddotnvim-54c035f3998c2aeb51e36f376d4641b1ef43f24e.tar.gz
dotnvim-54c035f3998c2aeb51e36f376d4641b1ef43f24e.zip
Avoid using global vimtags if possible
-rw-r--r--.gitignore2
-rw-r--r--vimrc6
2 files changed, 6 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 3b569ae..2ad9359 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,2 @@
.netrwhist
-
+.tags
diff --git a/vimrc b/vimrc
index eceeba7..e19d851 100644
--- a/vimrc
+++ b/vimrc
@@ -58,9 +58,13 @@ noremap <C-F6> :SyntasticCheck<CR>
"" vim-autoformat
noremap <C-F5> :Autoformat<CR>
+"" vim-easytags
" use local tags if found
set tags=./.tags;
-let g:easytags_dynamic_files = 1
+" local tags ALWAYS (unless no write permisssions)
+let g:easytags_dynamic_files = 2
+" try async updates
+let g:easytags_async = 1
" build tags
map <C-F12> :!ctags -R -f ./.tags .<CR>