Normalize nvim plugin configs to 4-space indentation

This commit is contained in:
duma799
2026-02-12 01:11:21 +04:00
parent 048357623d
commit f1bdc4a221
6 changed files with 168 additions and 170 deletions
+10 -10
View File
@@ -1,12 +1,12 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
}