feat(neovide): add initial config files

This commit is contained in:
2025-10-15 03:31:23 +02:00
committed by GitHub
parent ca9980533b
commit 19b47322e1
9 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "markdown" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
}