old configuration

This commit is contained in:
CJSatnarine
2025-12-14 20:45:53 -05:00
commit c8b2f86499
25 changed files with 958 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
-- Treesitter plugin.
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
-- Initialise treesitter and set it up and stuff.
-- Go to `https://github.com/nvim-treesitter/nvim-treesitter` to find languages.
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
})
end
}