Skip to content

Commit

Permalink
feat(comment): add ts-comments.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed May 21, 2024
1 parent 06fbacf commit df6fce9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lua/astrocommunity/comment/ts-comments-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 🚀 ts-comments.nvim

**Requirements:** Neovim v0.10+

Tiny plugin to enhance Neovim's native comments

**Repository:** <https://github.com/folke/ts-comments.nvim>
10 changes: 10 additions & 0 deletions lua/astrocommunity/comment/ts-comments-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -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,
},
}

0 comments on commit df6fce9

Please sign in to comment.