mirror of
https://github.com/zoriya/ts-comments.nvim.git
synced 2026-06-01 10:05:02 +00:00
docs: initial docs
This commit is contained in:
@@ -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 -->",
|
||||
},
|
||||
}
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user