my-nvim-config/laptop/plugin/treesitter.lua

14 lines
391 B
Lua
Raw Normal View History

2024-03-26 01:33:00 -05:00
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "rust", "lua", "vim", "vimdoc", "latex", "ocaml",
2024-03-26 02:30:40 -05:00
"yaml", "dockerfile", "bash", "html", "javascript", "css", "go",
"json", "python", "fish" },
2024-03-26 01:33:00 -05:00
sync_install = false,
2024-03-26 02:30:40 -05:00
highlight = {
enable = true,
disable = { "make" },
},
2024-03-26 01:33:00 -05:00
indent = { enable = true },
})