mirror of
https://codeberg.org/JasterV/dotfiles.git
synced 2026-04-26 18:40:04 +00:00
31 lines
549 B
Lua
31 lines
549 B
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"cmake",
|
|
"cpp",
|
|
"css",
|
|
"gitignore",
|
|
"go",
|
|
"graphql",
|
|
"http",
|
|
"rust",
|
|
"scss",
|
|
"sql",
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
require("nvim-treesitter.configs").setup(opts)
|
|
|
|
-- MDX
|
|
vim.filetype.add({
|
|
extension = {
|
|
mdx = "mdx",
|
|
},
|
|
})
|
|
vim.treesitter.language.register("markdown", "mdx")
|
|
end,
|
|
},
|
|
}
|