diff options
| author | Robert Günzler <r@gnzler.io> | 2022-10-14 20:59:23 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-10-14 21:01:15 +0200 |
| commit | 8f755cfad3c2fd092e111671c8a36e5835553131 (patch) | |
| tree | c0dda34eba44c782608b84a742d78dcec3b8ba96 /.vim | |
| parent | 77a364f7f665e6b638ef9495023d9c81993887f7 (diff) | |
vim: use code-action-menu
Diffstat (limited to '.vim')
| -rw-r--r-- | .vim/lua/plugins.lua | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index f1fea73..ad6e80b 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -411,14 +411,10 @@ require('packer').startup({function() vim.fn.sign_define({{name='LightBulbSign', text='', texthl='LightBulbSign'}}) end} -- }}} - 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 - end, + use {'weilbith/nvim-code-action-menu', config = function() - end} -- }}} + vim.lsp.buf.code_action = require('code_action_menu').open_code_action_menu + end} use {'jose-elias-alvarez/null-ls.nvim', -- {{{ requires = {'nvim-lua/plenary.nvim'}, |