nix-config/home/neovim/configs/lua/configs/treesitter.lua
2025-03-26 13:26:52 +01:00

27 lines
442 B
Lua

local options = {
ensure_installed = {
"bash",
"fish",
"lua",
"luadoc",
"markdown",
"printf",
"toml",
"vim",
"vimdoc",
"yaml",
-- Languages
"python",
"templ",
},
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
require("nvim-treesitter.configs").setup(options)