refactor: redid neovim config

This commit is contained in:
2025-01-23 07:46:05 +00:00
parent 85a46854fe
commit fbffcffe21
16 changed files with 132 additions and 251 deletions

View File

@@ -0,0 +1,30 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"c",
"lua",
"vim",
"vimdoc",
"query",
"markdown",
"markdown_inline",
"javascript",
"typescript",
"tsx",
"rust",
"zig",
},
sync_install = true,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
},
},
},
}