From af32327977e9f5c16ef6a83c55274feeaee6ad63 Mon Sep 17 00:00:00 2001 From: Vladan Popovic Date: Sun, 24 Sep 2023 01:24:10 +0200 Subject: [PATCH] move CodeActionMenu to lsp section --- lua/plugins.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 138e9e6..397539b 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -3,8 +3,6 @@ return require('packer').startup(function() -- Packer can manage itself as an optional plugin use {'wbthomason/packer.nvim', opt = true } - use { 'weilbith/nvim-code-action-menu', cmd = 'CodeActionMenu' } - -- Fuzzy finder use { 'nvim-telescope/telescope.nvim', @@ -16,11 +14,11 @@ return require('packer').startup(function() -- LSP and related use { 'neovim/nvim-lspconfig' } use { 'nvim-lua/completion-nvim' } + use { 'weilbith/nvim-code-action-menu', cmd = 'CodeActionMenu' } -- Lua development use { 'tjdevries/nlua.nvim' } - -- Vim dispatch use { 'tpope/vim-dispatch' }