]> git.sthu.org Git - vimconf.git/blobdiff - plugins-local.vim.example
plugins: Use lua-based keymaps with descriptions
[vimconf.git] / plugins-local.vim.example
index cbc21249e0c3c7d2fa352a6834f8b57e0cfb320c..997b38783ad40fcfc98b3e4fe42bd1fe4af70231 100644 (file)
@@ -1,6 +1,18 @@
-Plug 'jamessan/vim-gnupg'
+"Plug 'kien/tabman.vim'
 
-" An alternative to youcompleteme (ycm)
-Plug 'justmao945/vim-clang', {'for': ['c', 'cpp', 'objc']}
+"Plug 'chikamichi/mediawiki.vim'
 
-"Plug 'kien/tabman.vim'
+function PluginsConfigLocal()
+    " Reduce load on memory by updating one plugin at a time
+    "let g:plug_threads = 1
+
+    " Some terminals, like konsole, cause weired symbols (e.g., q) printed due to
+    " broken cursor-shape termcodes.
+    "if has('nvim')
+        "set guicursor=
+        " Workaround some broken plugins which set guicursor indiscriminately.
+        "au OptionSet guicursor noautocmd set guicursor=
+    "end
+endfunction
+
+" vim:ft=vim