mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-01 07:21:12 +00:00
26 lines
350 B
Lua
26 lines
350 B
Lua
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
"lua",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"bash",
|
|
"python",
|
|
"go",
|
|
"gomod",
|
|
"gowork",
|
|
"json",
|
|
"yaml",
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
disable = { "css" },
|
|
},
|
|
autopairs = {
|
|
enable = true,
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
disable = { "python", "css" },
|
|
},
|
|
})
|