feat(working): first working condition

This commit is contained in:
darwincereska
2025-11-19 08:59:51 -05:00
parent 5a5c81eb60
commit c86f52f5fb
31 changed files with 789 additions and 283 deletions

View File

@@ -2,6 +2,34 @@ return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("config.plugin.treesitter")
require("nvim-treesitter.configs").setup({
ensure_installed = {
"markdown",
"markdown_inline",
"lua",
"python",
"javascript",
"typescript",
"html",
"css",
"json",
"yaml",
"bash",
"vim",
"c",
"cpp",
"lua",
"go",
"kotlin",
"java"
},
highlight = {
enable = true,
additional_vim_regex_highlighting = { "markdown", "mdx" },
},
indent = {
enable = true,
},
})
end,
}