Update settings

This commit is contained in:
Saeed Afzal
2024-04-12 23:54:07 +01:00
parent 088c1e113d
commit 100ea186dd
20 changed files with 128 additions and 814 deletions

View File

@@ -1,31 +0,0 @@
return {
"nvim-treesitter/nvim-treesitter",
dependencies = {
{ "windwp/nvim-ts-autotag", config = true }
},
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup {
ensure_installed = { "lua" },
highlight = { enable = true },
indent = {
enable = true,
disable = { "dart" }
},
autotag = { enable = true }
}
end,
opts = {
ensure_installed = { "lua" },
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
autotag = { enable = true }
}
}