diff --git a/nvim/default.nix b/nvim/default.nix index c890dbe..19b9e83 100644 --- a/nvim/default.nix +++ b/nvim/default.nix @@ -58,7 +58,7 @@ in catppuccin-nvim nvim-treesitter.withAllGrammars - ts-comments-nvim + # ts-comments-nvim nvim-lspconfig (blink-cmp.overrideAttrs { diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua index a56ccd6..7e7363f 100644 --- a/nvim/lua/plugins/treesitter.lua +++ b/nvim/lua/plugins/treesitter.lua @@ -35,13 +35,13 @@ return { end }, - { - "ts-comments.nvim", - event = { "BufReadPost", "BufWritePost", "BufNewFile" }, - after = function() - require("ts-comments").setup({}) - end, - }, + -- { + -- "ts-comments.nvim", + -- event = { "BufReadPost", "BufWritePost", "BufNewFile" }, + -- after = function() + -- require("ts-comments").setup({}) + -- end, + -- }, { "vim-illuminate",