diff --git a/lua/astrocommunity/comment/ts-comments-nvim/README.md b/lua/astrocommunity/comment/ts-comments-nvim/README.md new file mode 100644 index 000000000..a9d17e4ca --- /dev/null +++ b/lua/astrocommunity/comment/ts-comments-nvim/README.md @@ -0,0 +1,7 @@ +# 🚀 ts-comments.nvim + +**Requirements:** Neovim v0.10+ + +Tiny plugin to enhance Neovim's native comments + +**Repository:** diff --git a/lua/astrocommunity/comment/ts-comments-nvim/init.lua b/lua/astrocommunity/comment/ts-comments-nvim/init.lua new file mode 100644 index 000000000..ffb798a37 --- /dev/null +++ b/lua/astrocommunity/comment/ts-comments-nvim/init.lua @@ -0,0 +1,10 @@ +return { + { "numToStr/Comment.nvim", enabled = false }, + { "JoosepAlviste/nvim-ts-context-commentstring", enabled = false }, + { + "folke/ts-comments.nvim", + opts = {}, + event = "VeryLazy", + enabled = vim.fn.has "nvim-0.10.0" == 1, + }, +}