diff --git a/.config/nvim/after/plugin/treesitter.lua b/.config/nvim/after/plugin/treesitter.lua index d7fb659d..83d53e89 100644 --- a/.config/nvim/after/plugin/treesitter.lua +++ b/.config/nvim/after/plugin/treesitter.lua @@ -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,