diff --git a/lua/astrocommunity/pack/ps1/README.md b/lua/astrocommunity/pack/ps1/README.md new file mode 100644 index 000000000..95e49eed9 --- /dev/null +++ b/lua/astrocommunity/pack/ps1/README.md @@ -0,0 +1,6 @@ +# PowerShell Language Pack + +This plugin pack does the following: + +- Adds `powershell-editor-services` language server +- Adds [vim-ps1](https://github.com/PProvost/vim-ps1) for language specific tooling diff --git a/lua/astrocommunity/pack/ps1/init.lua b/lua/astrocommunity/pack/ps1/init.lua new file mode 100644 index 000000000..42210c748 --- /dev/null +++ b/lua/astrocommunity/pack/ps1/init.lua @@ -0,0 +1,9 @@ +local utils = require "astronvim.utils" + +return { + { + "williamboman/mason-lspconfig.nvim", + opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, "powershell_es") end, + }, + { "PProvost/vim-ps1", ft = "ps1" }, +}