AstroNvim / astrocommunity

A community repository of common plugin specifications
GNU General Public License v3.0
1.21k stars 240 forks source link

Include endwise plugin for treesitter #155

Closed goetzc closed 1 year ago

goetzc commented 1 year ago

This plugin is useful to add the closing word in different languages, such as Lua or Ruby.

Check the repository for a video and more information: https://github.com/RRethy/nvim-treesitter-endwise

You can try it using:

return {
  {
    "RRethy/nvim-treesitter-endwise",
    event = "VeryLazy",
    config = function()
      require('nvim-treesitter.configs').setup {
        endwise = {
          enable = true
        }
      }
    end
  }
}
Uzaaft commented 1 year ago

Feel free to open up a PR. :) This is a community driven repo, so if its anything you use that you might think that the community needs then feel free to open a PR with that feature instead of opening an issue.

sigu commented 1 year ago

I opened one https://github.com/AstroNvim/astrocommunity/pull/466