Normalize nvim plugin configs to 4-space indentation

This commit is contained in:
duma799
2026-02-12 01:11:21 +04:00
parent 5a3f4bb8a1
commit 0e8f03710b
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,
}