docs: initial docs

This commit is contained in:
Folke Lemaitre
2024-05-20 23:09:09 +02:00
parent 3783df5705
commit f39c2b902b
+65
View File
@@ -0,0 +1,65 @@
# ts-comments.nvim
Super simple plugin to enhance Neovim's native comments:
- Easily override the comment string for a given **treesitter** language
- Supports different comment strings for different **treesitter** node types
# Requirements
- Neovim >= 0.10.0
# Installation
Using [lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{
"folke/ts-comments.nvim",
opts = {}
event = "VeryLazy"
}
```
# Configuration
Default configuration:
```lua
{
lang = {
astro = "<!-- %s -->",
c = "// %s",
cpp = "// %s",
css = "/* %s */",
gleam = "// %s",
glimmer = "{{! %s }}",
graphql = "# %s",
handlebars = "{{! %s }}",
hcl = "# %s",
html = "<!-- %s -->",
ini = "; %s",
php = "// %s",
rego = "# %s",
rescript = "// %s",
sql = "-- %s",
svelte = "<!-- %s -->",
terraform = "# %s",
tsx = {
_ = "// %s",
call_expression = "// %s",
comment = "// %s",
jsx_attribute = "// %s",
jsx_element = "{/* %s */}",
jsx_fragment = "{/* %s */}",
spread_element = "// %s",
statement_block = "// %s",
},
twig = "{# %s #}",
typescript = "// %s",
vim = '" %s',
vue = "<!-- %s -->",
},
}
```