diff options
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/lua/plugins.lua | 18 | 
1 files changed, 7 insertions, 11 deletions
| diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index e863099..ba92221 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -74,22 +74,18 @@ require("lazy").setup({      end,    }, +  -- Rust LSP    {      'mrcjkb/rustaceanvim',      version = '^6', -- Recommended      lazy = false, -- This plugin is already lazy    }, -  {"hrsh7th/nvim-cmp"}, -  {"hrsh7th/cmp-buffer"}, -  {"hrsh7th/cmp-path"}, -  {"hrsh7th/cmp-nvim-lsp"}, -  {"hrsh7th/cmp-nvim-lua"}, -   -  { -    "ray-x/lsp_signature.nvim", -    event = InsertEnter -  }, - +  -- Completion +  "hrsh7th/nvim-cmp", +  "hrsh7th/cmp-buffer", +  "hrsh7th/cmp-path", +  "hrsh7th/cmp-nvim-lsp", +  "hrsh7th/cmp-nvim-lua",  }) | 
