Working treesitter, gruvboxmaterial, flash.nvim

This commit is contained in:
2025-12-05 18:37:07 +01:00
parent 35b1e56a95
commit 53a821411f
9 changed files with 124 additions and 87 deletions

View File

@ -0,0 +1,42 @@
return {
"nvim-treesitter/nvim-treesitter",
lazy = false,
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
opts = {
ensure_installed = {
"bash",
"c",
"diff",
"html",
"javascript",
"json",
"lua",
"markdown",
"markdown_inline",
"python",
"query",
"regex",
"rust",
"toml",
"vim",
"vimdoc",
"yaml",
"wgsl",
},
sync_install = false,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = { enable = true },
},
config = function(_, opts)
require("nvim-treesitter.configs").setup(opts)
end,
}