add comment.nvim and fix lsp keymap

This commit is contained in:
2024-10-01 00:06:01 +02:00
parent d9249a54f1
commit b8e245dede
6 changed files with 35 additions and 17 deletions

View File

@@ -6,9 +6,9 @@ require("lazy").setup({
"hrsh7th/nvim-cmp",
dependencies = {
"hrsh7th/cmp-nvim-lsp", -- lsp auto-completion
"hrsh7th/cmp-buffer", -- buffer auto-completion
"hrsh7th/cmp-path", -- path auto-completion
"hrsh7th/cmp-cmdline", -- cmdline auto-completion
"hrsh7th/cmp-buffer", -- buffer auto-completion
"hrsh7th/cmp-path", -- path auto-completion
"hrsh7th/cmp-cmdline", -- cmdline auto-completion
},
config = function()
require("config.nvim-cmp")
@@ -39,4 +39,6 @@ require("lazy").setup({
},
},
"numToStr/Comment.nvim",
})