From ad27c2ce6d83f3ba0b78c72baaf11123a2737c79 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Sat, 11 Jul 2026 16:00:45 +0200 Subject: [PATCH] feat: remove comment.nvim because natively supported in nvim --- nvim/lua/plugins/style/comment.lua | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 nvim/lua/plugins/style/comment.lua diff --git a/nvim/lua/plugins/style/comment.lua b/nvim/lua/plugins/style/comment.lua deleted file mode 100755 index c78b490..0000000 --- a/nvim/lua/plugins/style/comment.lua +++ /dev/null @@ -1,10 +0,0 @@ -return { - -- add comment keybinds - "numToStr/Comment.nvim", - opts = {}, - event = "BufRead", - config = function() - require("Comment").setup() - require("Comment.ft").set("hyprlang", "#%s") - end, -}