Dots Updated

* Adds Neovim config
This commit is contained in:
2024-07-05 04:06:58 +05:30
parent 51381df5cf
commit 45f8d6233b
10 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
return{
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html", "css","fish","json","make","odin","rasi","xml" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}
}