Better config on plugins, add lazygit & update readme

This commit is contained in:
yaso 2026-07-02 12:48:12 +02:00
parent 87fc33a614
commit 4be5d628b8
9 changed files with 132 additions and 66 deletions

10
lua/plugins/comments.lua Normal file
View 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,
},
}