diff options
| author | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 18:04:23 -0500 |
|---|---|---|
| committer | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 18:04:23 -0500 |
| commit | 62af78a2adecf96588afbc96acd6520f7e62f65b (patch) | |
| tree | 5e9110bdb1da2afc2cf9afbd8c563d882190f9c5 /lua/user/treesitter.lua | |
| parent | b9a2bc855bbd7a7d54c9e280ee875393e30cf1a6 (diff) | |
add comments
Diffstat (limited to 'lua/user/treesitter.lua')
| -rw-r--r-- | lua/user/treesitter.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lua/user/treesitter.lua b/lua/user/treesitter.lua index b5754d6..6f14cfc 100644 --- a/lua/user/treesitter.lua +++ b/lua/user/treesitter.lua @@ -8,12 +8,16 @@ configs.setup { sync_install = false, -- install languages synchronously (only applied to `ensure_installed`) ignore_install = { "" }, -- List of parsers to ignore installing autopairs = { - enable = true, - }, + enable = true, + }, highlight = { enable = true, -- false will disable the whole extension disable = { "" }, -- list of language that will be disabled additional_vim_regex_highlighting = true, }, indent = { enable = true, disable = { "yaml" } }, + context_commentstring = { + enable = true, + enable_autocmd = false, + }, } |
