From 080c5418a8c2b693e35c62d2fb73645958c90fe2 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 23 Mar 2025 16:25:59 +0100 Subject: [PATCH] nvim/lua/user/plugins/editor/treesitter.lua: adding some common parsers --- nvim/lua/user/plugins/editor/treesitter.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nvim/lua/user/plugins/editor/treesitter.lua b/nvim/lua/user/plugins/editor/treesitter.lua index c9c973a..e6c7574 100644 --- a/nvim/lua/user/plugins/editor/treesitter.lua +++ b/nvim/lua/user/plugins/editor/treesitter.lua @@ -20,6 +20,17 @@ return { "toml", "xml", "kdl", + + -- misc + "comment", + "regex", + "re2c", + "xresources", + "sql", + "csv", + "ssh_config", + "printf", + "nginx", }, auto_install = true,