From a2748ac0e9985f102ec1a8835a9d527747abe7f6 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Tue, 26 Mar 2024 01:40:20 -0500 Subject: [PATCH] chg: Added more languages to treesitter --- laptop/plugin/treesitter.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/laptop/plugin/treesitter.lua b/laptop/plugin/treesitter.lua index 3674cbc..4136a72 100644 --- a/laptop/plugin/treesitter.lua +++ b/laptop/plugin/treesitter.lua @@ -1,7 +1,8 @@ local configs = require("nvim-treesitter.configs") configs.setup({ - ensure_installed = { "rust", "lua", "vim", "vimdoc", "latex", "ocaml", "yaml", "dockerfile", "make", "bash" }, + ensure_installed = { "rust", "lua", "vim", "vimdoc", "latex", "ocaml", + "yaml", "dockerfile", "make", "bash", "html", "javascript", "css" }, sync_install = false, highlight = { enable = true }, indent = { enable = true },