neovim-dots/lua/plugins/treesitter.lua

11 lines
298 B
Lua
Raw Permalink Normal View History

-- extends the treesitter configuration
return {
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
2024-05-05 20:21:01 -07:00
vim.list_extend(opts.ensure_installed, { "markdown", "markdown_inline", "svelte", "rust", "haskell", "css" })
end
end,
}