diff options
| author | Robert Günzler <r@gnzler.io> | 2022-06-15 04:49:26 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-06-15 04:49:26 +0200 |
| commit | 8bc80a0ca2bf421e254adb3f3592e954f000b8ca (patch) | |
| tree | 0a383ce6dcc07351a9d2a4fc76ee759d326fe2a0 /.vim | |
| parent | 81db33274b3119089873487a04a9ee00b1c4ea4f (diff) | |
vim: add some more foldmarkers to plugins.lua
Diffstat (limited to '.vim')
| -rw-r--r-- | .vim/lua/plugins.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index b3cfb1f..6d109d8 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -209,7 +209,7 @@ require('packer').startup({function() require('leap').set_default_keymaps() end} -- }}} - _G.treesitter_enabled = { + _G.treesitter_enabled = { -- {{{ 'bash', 'bibtex', 'c', @@ -251,7 +251,7 @@ require('packer').startup({function() 'norg_table', 'hare', 'gotmpl', - } + } -- }}} use {'nvim-treesitter/nvim-treesitter', -- {{{ run = ':TSUpdate', requires = { @@ -393,14 +393,14 @@ require('packer').startup({function() }) end} -- }}} - use {'weilbith/nvim-code-action-menu', module = 'code_action_menu', + use {'weilbith/nvim-code-action-menu', module = 'code_action_menu', -- {{{ setup = function() - vim.lsp.buf.code_action = function(_) - require('code_action_menu').open_code_action_menu() - end + -- vim.lsp.buf.code_action = function(_) + -- require('code_action_menu').open_code_action_menu() + -- end end, config = function() - end} + end} -- }}} use {'jose-elias-alvarez/null-ls.nvim', -- {{{ requires = {'nvim-lua/plenary.nvim'}, |