47 lines
638 B
Lua
47 lines
638 B
Lua
require("nvim-treesitter.configs").setup({
|
|
highlight = { enable = true },
|
|
ensure_installed = {
|
|
"c",
|
|
"lua",
|
|
"python",
|
|
"bash",
|
|
"go",
|
|
"html",
|
|
"css",
|
|
"javascript",
|
|
"typescript",
|
|
"git_config",
|
|
"git_rebase",
|
|
"gitattributes",
|
|
"gitcommit",
|
|
"gitignore",
|
|
"gomod",
|
|
"gosum",
|
|
"gotmpl",
|
|
"gowork",
|
|
"hjson",
|
|
"ini",
|
|
"json",
|
|
"json5",
|
|
"jsonnet",
|
|
"latex",
|
|
"make",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"nginx",
|
|
"proto",
|
|
"rust",
|
|
"templ",
|
|
"todotxt",
|
|
"toml",
|
|
"tsx",
|
|
"typescript",
|
|
"vim",
|
|
"vimdoc",
|
|
"xml",
|
|
"yaml",
|
|
"sql",
|
|
"ssh_config",
|
|
},
|
|
ignore_install = { "gdhsader", "phpdoc" },
|
|
})
|