diff options
Diffstat (limited to '.vim/lua/plugins.lua')
| -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'}, |