27 lines
442 B
Lua
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)
|