diff options
author | Squibid <me@zacharyscheiman.com> | 2025-05-08 18:18:34 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2025-05-08 18:18:34 -0500 |
commit | 7430ebed8eab0364452a6cdcaa209f8a7288e44d (patch) | |
tree | cd80b99c41c4af92c7a130fe52ca462062697d22 /lua/conf/plugins/treesitter.lua | |
parent | 7c3289fded1f75f6e060f56bd06edc2a327744d9 (diff) | |
download | nvim-3.0.tar.gz nvim-3.0.tar.bz2 nvim-3.0.zip |
kitchen sink now don't support any version lower than 0.11.0 for lspv3.0
- dap now works for java and c
Diffstat (limited to 'lua/conf/plugins/treesitter.lua')
-rw-r--r-- | lua/conf/plugins/treesitter.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/conf/plugins/treesitter.lua b/lua/conf/plugins/treesitter.lua index d9607e3..e473de4 100644 --- a/lua/conf/plugins/treesitter.lua +++ b/lua/conf/plugins/treesitter.lua @@ -25,7 +25,7 @@ return { "nvim-treesitter/nvim-treesitter", enable = true, disable = function(lang, _) - -- disable indenting in php (it"s more broken with than without) + -- disable indenting in php (it's more broken with than without) return table.contains(({ "php" }), lang) @@ -39,7 +39,7 @@ return { "nvim-treesitter/nvim-treesitter", additional_vim_regex_highlighting = true, disable = function(lang, buf) - -- disable in some files where vim"s builtin highlighting is better + -- disable in some files where vim's builtin highlighting is better if table.contains(({ "diff", "tex" }), lang) then |