summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/conf/plugins/treesitter.lua')
-rw-r--r--lua/conf/plugins/treesitter.lua4
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