Added my NeoVim config.

This commit is contained in:
duma97
2025-11-15 21:21:50 +04:00
parent 70d2ac3c4d
commit 992e6832ad
20 changed files with 712 additions and 0 deletions
+12
View File
@@ -0,0 +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,
}