aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlista Kanjo2023-06-23 12:53:57 -0400
committerBlista Kanjo2023-06-23 12:53:57 -0400
commit2cdfab89a7fc36fcd9b9153a4ad00c49d5bbce4c (patch)
treece88215cdbc67258574d28c81d6ae64c54960044
parent455f753e95237fb29117f2cc018a40ac95c85165 (diff)
refactor: treesitter-nvim - disabled php highlighting
-rw-r--r--.config/nvim/lua/tree.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/.config/nvim/lua/tree.lua b/.config/nvim/lua/tree.lua
index d293c33..81ca0d9 100644
--- a/.config/nvim/lua/tree.lua
+++ b/.config/nvim/lua/tree.lua
@@ -16,11 +16,15 @@ configs.setup {
ignore_install = { "" },
highlight = {
enable = true,
- disable = { "" },
+ disable = {
+ "php",
+ },
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
- disable = { "yaml" },
+ disable = {
+ "yaml",
+ },
},
}