ensure_installed = 'all' was maybe a bit too much

This commit is contained in:
William Ball 2025-04-17 10:21:10 -07:00
parent afee190bd2
commit 93eef50690
Signed by: wball
GPG key ID: B8682D8137B70765
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
return {
{
-- "https://forgejo.ballcloud.cc/wball/perga.nvim",
url = "/home/wball/repos/perga.nvim",
"https://forgejo.ballcloud.cc/wball/perga.nvim",
-- url = "/home/wball/repos/perga.nvim",
config = true,
},
}

View file

@ -6,7 +6,7 @@ return {
local configs = require('nvim-treesitter.configs')
configs.setup({
ensure_installed = 'all',
ensure_installed = {'lua', 'rust', 'haskell', 'c', 'scheme', 'perga', 'bash', 'python'},
highlight = { enable = true },
indent = { enable = true }
})