my neovim configuration

pacman -Ss tree-sitter

Changed files
+12 -11
lua
ptero
configs
+12 -11
lua/ptero/configs/treesitter.lua
···
local configs = utils.Load("nvim-treesitter.configs")
configs.setup {
-
ensure_installed = "all",
-
highlight = {
-
enable = true,
-
additional_vim_regex_highlighting = false,
-
},
-
indent = {
-
enable = true,
-
disable = {
-
"python"
-
}
-
},
}
···
local configs = utils.Load("nvim-treesitter.configs")
configs.setup {
+
ensure_installed = "all",
+
auto_install = true,
+
highlight = {
+
enable = true,
+
additional_vim_regex_highlighting = false,
+
},
+
indent = {
+
enable = true,
+
disable = {
+
"python"
+
}
+
},
}