Files
nvim/lua/plugins/coding.lua
T
2026-01-20 15:07:23 +02:00

30 lines
631 B
Lua

return {
-- Better highlighting and parsing
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.config").setup({
highlight = { enabled = true },
additional_vim_regex_highlighting = false,
indent = { enabled = true },
ensure_installed = {
"go",
"gomod",
"gosum",
"gowork",
"typescript",
"tsx",
"javascript",
"json",
"lua",
"vimdoc",
"markdown",
"yaml",
"bash",
},
})
end,
},
}