From 9ce3404d79398939ab0820f51b5b331a6cc889c0 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 22 Feb 2022 08:45:01 +0100 Subject: [PATCH] feat: add more treesitter syntaxes --- lua/plugins/treesitter.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index c424398..9902a46 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -10,12 +10,17 @@ require('nvim-treesitter.configs').setup({ "bash", "c", "cpp", + "html", + "javascript", "json", "lua", "markdown", "python", "rust", + "svelte", + "typescript", "vim", + "vue", "yaml", }, })