aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorAndrey Chalkin <L2jLiga@gmail.com>2024-07-22 23:14:45 +0200
committerGitHub <noreply@github.com>2024-07-22 23:14:45 +0200
commitc5b3560306c93498cd745f597880d4afe95ec5c8 (patch)
tree881542851e021eeba4ce9eb551fc96a492c133b7 /lua
parentrefactor(latex): deduplicate captures, reorder (diff)
downloadnvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar
nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.gz
nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.bz2
nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.lz
nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.xz
nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.zst
nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.zip
feat: add powershell language
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 906160ed7..1cdb1b186 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -1562,6 +1562,15 @@ list.pony = {
maintainers = { "@amaanq", "@mfelsche" },
}
+list.powershell = {
+ install_info = {
+ url = "https://github.com/airbus-cert/tree-sitter-powershell",
+ files = { "src/parser.c", "src/scanner.c" },
+ },
+ filetype = "ps1",
+ maintainers = { "L2jLiga" },
+}
+
list.printf = {
install_info = {
url = "https://github.com/ObserverOfTime/tree-sitter-printf",