nvim: treesitter enable more language by default

This commit is contained in:
Primrose 2025-06-28 23:17:02 +02:00
parent b980aa5192
commit 3f9663ea00
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -1,6 +1,18 @@
require("nvim-treesitter.configs").setup {
ensure_installed = { "haskell", "lua" },
ensure_installed = {
-- funny language hehe
"haskell",
"rust",
"nix",
-- vim
"lua",
-- misc
"html",
"scss",
"css",
"json",
},
ignore_install = { "typst", "markdown" },
sync_install = false,
auto_install = true,