Better config on plugins, add lazygit & update readme
This commit is contained in:
parent
87fc33a614
commit
4be5d628b8
9 changed files with 132 additions and 66 deletions
10
lua/plugins/comments.lua
Normal file
10
lua/plugins/comments.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
{
|
||||
"numToStr/Comment.nvim",
|
||||
config = function()
|
||||
require("Comment").setup()
|
||||
vim.keymap.set("n", "<C-/>", "gcc", { remap = true, desc = "Toggle comment" })
|
||||
vim.keymap.set("v", "<C-/>", "gc", { remap = true, desc = "Toggle comment" })
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue