1
0
Fork 0
dotfiles/.config/nvim/lua/treesitter.lua
Lucas Sta Maria fcf2a53ed6
fix: add many plugins to neovim
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2023-01-30 21:28:55 -05:00

42 lines
721 B
Lua

local ts_config = require("nvim-treesitter.configs")
ts_config.setup {
ensure_installed = {
"bash",
"c",
"cpp",
"css",
"haskell",
"html",
"java",
"javascript",
"json",
"latex",
"lua",
"make",
"markdown",
"ocaml",
"python",
"regex",
"rust",
"scss",
"svelte",
"toml",
"tsx",
"typescript",
"vim",
"vue",
"yaml"
},
highlight = {
enable = true,
use_languagetree = true
},
indent = {
enable = false,
disable = { "python" }
},
yati = {
enable = true,
}
}