initial commit

This commit is contained in:
2025-12-30 01:31:05 -06:00
commit 24d5bcc047
20 changed files with 1045 additions and 0 deletions

26
lua/_treesitter.lua Normal file
View File

@@ -0,0 +1,26 @@
plugin({
"nvim-treesitter/nvim-treesitter",
branch = "master",
lazy = false,
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"elixir",
"eex",
"heex",
"json",
"javascript",
"css",
"scss",
"lua",
"rust",
"python",
"markdown",
"markdown_inline",
},
highlight = { enable = true },
indent = { enable = true },
})
end,
})