mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 05:24:41 -05:00
36 lines
886 B
Lua
36 lines
886 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
"markdown",
|
|
"markdown_inline",
|
|
"lua",
|
|
"python",
|
|
"javascript",
|
|
"typescript",
|
|
"html",
|
|
"css",
|
|
"json",
|
|
"yaml",
|
|
"bash",
|
|
"vim",
|
|
"c",
|
|
"cpp",
|
|
"lua",
|
|
"go",
|
|
"kotlin",
|
|
"java"
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = { "markdown", "mdx" },
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
})
|
|
end,
|
|
}
|