dotfiles/.config/nvim/lua/plugins/treesitter.lua

32 lines
408 B
Lua
Raw Normal View History

2023-09-21 19:01:37 +02:00
local treesitter = {
"nvim-treesitter/nvim-treesitter",
lazy = false,
build = ":TSUpdate",
config = function()
end,
opts = {
ensure_installed = {
"bash",
"css",
"dockerfile",
"elixir",
"git_rebase",
"gitcommit",
"gitignore",
"go",
"html",
"json",
"lua",
"markdown",
"php",
"python",
"rust",
"sql",
"toml",
"yaml",
}
}
}
return { treesitter }