dotfiles/lua/plugins/treesitter.lua

27 lines
379 B
Lua
Raw Normal View History

2022-02-21 14:15:15 +00:00
require('nvim-treesitter.configs').setup({
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
},
ensure_installed = {
"bash",
"c",
"cpp",
2022-02-22 07:45:01 +00:00
"html",
"javascript",
2022-02-21 14:15:15 +00:00
"json",
"lua",
"markdown",
"python",
"rust",
2022-02-22 07:45:01 +00:00
"svelte",
"typescript",
2022-02-21 14:15:15 +00:00
"vim",
2022-02-22 07:45:01 +00:00
"vue",
2022-02-21 14:15:15 +00:00
"yaml",
},
})