we are revamping with this one

This commit is contained in:
h 2024-06-24 19:55:44 -04:00
parent 4730682248
commit 22b71d8545
2 changed files with 14 additions and 7 deletions

View File

@ -23,7 +23,14 @@ return require('packer').startup({
use {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate'
run = ':TSUpdate',
config = function()
require("nvim-treesitter.configs").setup({
highlight = { enable = true },
indent = { enable = true },
ensure_installed = "all",
})
end
}
use {