AutoYADM commit: 2024-12-16 00:45:01

This commit is contained in:
Daniel Fichtinger 2024-12-16 00:45:01 -05:00
parent eeec7ad37c
commit deacb3fba5
2 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,7 @@
return { return {
"williamboman/mason.nvim", "williamboman/mason.nvim",
-- opts = { ensure_installed = { "ltex-ls" } }, -- opts = { ensure_installed = { "ltex-ls" } },
opts = {
ensure_installed = { "tree-sitter-cli" },
},
} }

View file

@ -1,12 +1,15 @@
return { return {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
dependencies = {
"williamboman/mason.nvim",
},
opts = { opts = {
highlight = { enable = true }, highlight = { enable = true },
indent = { enable = true }, indent = { enable = true },
ensure_installed = { ensure_installed = {
"bash", "bash",
"c", "c",
"tex", "latex",
"diff", "diff",
"html", "html",
"javascript", "javascript",