markdown: Allow for reflow of bullet paragraphs
[vimconf.git] / plugins-noroot.vim
index f88134f6a96e81580aba0dd33a2b8a39f834cbe8..e047484a98a40df43be0350ad4dab7c55e0497b4 100644 (file)
@@ -49,4 +49,12 @@ function PluginsNorootConfig()
     " Generally disable gutentags, but enable for some filetypes
     let g:gutentags_enabled = 0
     au FileType c,cpp,objc,tex let g:gutentags_enabled = 1
+    " Make manually created tags files also root markers
+    let g:gutentags_project_root = ['tags']
+    let g:gutentags_cache_dir = expand('~/.cache/vim/ctags/')
+    " Do not automatically generate on browsing
+    let g:gutentags_generate_on_missing = 0
+
+    " Allow for reflow of bullet paragraphs
+    let g:vim_markdown_auto_insert_bullets = 0
 endfunction