summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/user/plugins/treesitter.lua
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2022-05-29 12:02:06 +0200
committeryuzu-eva <stevenhu@web.de>2022-05-29 12:02:06 +0200
commit16ad06e857265fc394eb84f39b2019db604ff295 (patch)
treeee314888fa4ee1bdb354942b7318b74ab091b2a8 /.config/nvim/lua/user/plugins/treesitter.lua
parent06de264caa4c54f4fb1cf33289a4638a81d797f9 (diff)
disabled indent specifically for html
Diffstat (limited to '.config/nvim/lua/user/plugins/treesitter.lua')
-rw-r--r--.config/nvim/lua/user/plugins/treesitter.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/.config/nvim/lua/user/plugins/treesitter.lua b/.config/nvim/lua/user/plugins/treesitter.lua
index 405be2d..32c74ee 100644
--- a/.config/nvim/lua/user/plugins/treesitter.lua
+++ b/.config/nvim/lua/user/plugins/treesitter.lua
@@ -1,7 +1,8 @@
require('nvim-treesitter.configs').setup {
- -- indent = {
- -- enable = true,
- -- },
+ indent = {
+ enable = true,
+ disable = { 'html' },
+ },
highlight = {
enable = true,
disable = { 'NvimTree' },