feat: plugin cleaup

This commit is contained in:
2025-08-21 11:27:29 +02:00
parent 3abb3491a9
commit e6078e420b
7 changed files with 36 additions and 111 deletions

View File

@@ -12,14 +12,6 @@ return {
require("nvim-treesitter.configs").setup(opts)
end,
},
-- To test if TreeSitter is working
-- "nvim-treesitter/playground",
-- {
-- "nvim-treesitter/nvim-treesitter-context",
-- opts = function()
-- return require("plugins.opts.treesitterContext")
-- end,
-- },
-- │ Completion │
{
@@ -66,20 +58,4 @@ return {
"folke/trouble.nvim",
opts = { use_diagnostic_signs = true },
},
-- │ Easy comments │
-- {
-- "numToStr/Comment.nvim",
-- keys = {
-- { "gcc", mode = "n", desc = "Comment toggle current line" },
-- { "gc", mode = { "n", "o" }, desc = "Comment toggle linewise" },
-- { "gc", mode = "x", desc = "Comment toggle linewise (visual)" },
-- { "gbc", mode = "n", desc = "Comment toggle current block" },
-- { "gb", mode = { "n", "o" }, desc = "Comment toggle blockwise" },
-- { "gb", mode = "x", desc = "Comment toggle blockwise (visual)" },
-- },
-- config = function(_, opts)
-- require("Comment").setup(opts)
-- end,
-- },
}