mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 03:04:43 -05:00
28 lines
506 B
Lua
28 lines
506 B
Lua
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
"markdown",
|
|
"markdown_inline",
|
|
"lua",
|
|
"python",
|
|
"javascript",
|
|
"typescript",
|
|
"html",
|
|
"css",
|
|
"json",
|
|
"yaml",
|
|
"bash",
|
|
"vim",
|
|
"c",
|
|
"cpp",
|
|
"lua",
|
|
"go",
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = { "markdown" },
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
})
|