1
Fork 0

Add treesitter

This commit is contained in:
Hadeed 2025-03-26 20:15:55 +05:00
parent b149a776b0
commit a7e970d574

View file

@ -15,10 +15,28 @@ end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
install = {
colorscheme = { "gruvbox" }
},
spec = {
{ "ellisonleao/gruvbox.nvim", config = function() vim.cmd.colorscheme "gruvbox" end },
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = "all",
highlight = {
enable = true
},
indent = {
enable = true
}
},
main = "nvim-treesitter.configs",
build = ":TSUpdate",
},
{ import = "config.plugins" }
},
install = { colorscheme = { "gruvbox" } }
})