From 3f9663ea0056b493105c376a99b42aae9857e15c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 28 Jun 2025 23:17:02 +0200 Subject: [PATCH] nvim: treesitter enable more language by default --- .config/nvim/after/plugin/treesitter.lua | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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,