dotfiles/nvim/lua/plugins/treesitter.lua

10 lines
391 B
Lua
Raw Permalink Normal View History

2022-02-21 14:15:15 +00:00
require('nvim-treesitter.configs').setup({
2022-02-24 06:54:00 +00:00
highlight = {enable = true, additional_vim_regex_highlighting = false},
indent = {enable = true},
ensure_installed = {
2022-03-17 08:14:16 +00:00
"bash", "c", "cpp", "css", "dockerfile", "hcl", "html", "javascript",
"json", "latex", "lua", "markdown", "python", "rust", "svelte", "toml",
"tsx", "typescript", "vim", "vue", "yaml"
2022-02-24 06:54:00 +00:00
}
2022-02-21 14:15:15 +00:00
})