From eec24643a4e4a958bfc06d58f317d91c5fe91959 Mon Sep 17 00:00:00 2001 From: Devin Haska <2636402+wonderfulfrog@users.noreply.github.com> Date: Wed, 7 Aug 2024 17:12:53 -0700 Subject: [PATCH] feat: add pug support --- lua/plugins/treesitter.lua | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 3dcacaf..1c73413 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -5,17 +5,18 @@ return { build = ":TSUpdate", opts = { ensure_installed = { - "lua", - "javascript", - "typescript", - "tsx", - "htmldjango", "html", - "jsonc", - "json", + "htmldjango", + "javascript", "jsdoc", + "json", + "jsonc", + "lua", "markdown", "markdown_inline", + "pug", + "tsx", + "typescript", "vim", "vimdoc", },