X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=plugins-noroot.vim;h=d801823df55187a2a65442c23e5fc0746e03f43b;hp=e047484a98a40df43be0350ad4dab7c55e0497b4;hb=HEAD;hpb=fade69ae7abe3efc27eb50bafd5583259897e7a4 diff --git a/plugins-noroot.vim b/plugins-noroot.vim index e047484..81411f9 100644 --- a/plugins-noroot.vim +++ b/plugins-noroot.vim @@ -27,6 +27,7 @@ Plug 'mattn/calendar-vim' Plug 'vim-scripts/loremipsum', {'on': 'Loremipsum'} +Plug 'ggandor/leap.nvim' function PluginsNorootConfig() let g:localvimrc_persistent = 1 @@ -54,7 +55,19 @@ function PluginsNorootConfig() let g:gutentags_cache_dir = expand('~/.cache/vim/ctags/') " Do not automatically generate on browsing let g:gutentags_generate_on_missing = 0 + let g:gutentags_ctags_exclude_wildignore = 1 + let g:gutentags_ctags_exclude = [ + \'node_modules', '_build', 'build*', 'CMakeFiles', '.*cache*', 'venv', + \'*.md', '*.css', '*.html', '*.json', '*.xml', '*.xmls', '*.ui'] " Allow for reflow of bullet paragraphs let g:vim_markdown_auto_insert_bullets = 0 + + let g:calendar_monday = 1 + + if has('nvim-0.5') +lua <