aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/servers/powershell_es/init.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-07-06 19:41:43 +0200
committerWilliam Boman <william@redwill.se>2022-07-07 00:39:59 +0200
commit5f634e0c37e723fc0c33e06b4fd5c2180178db40 (patch)
treefa4f09363adefa8259e23e4d1ea036db628b1243 /lua/nvim-lsp-installer/servers/powershell_es/init.lua
parentfeat(health): use stderr for java version, also check for JAVA_HOME (#765) (diff)
downloadmason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar
mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.gz
mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.bz2
mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.lz
mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.xz
mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.zst
mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.zip
mason.nvim
Diffstat (limited to 'lua/nvim-lsp-installer/servers/powershell_es/init.lua')
-rw-r--r--lua/nvim-lsp-installer/servers/powershell_es/init.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/lua/nvim-lsp-installer/servers/powershell_es/init.lua b/lua/nvim-lsp-installer/servers/powershell_es/init.lua
deleted file mode 100644
index 0aa64ea3..00000000
--- a/lua/nvim-lsp-installer/servers/powershell_es/init.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-local server = require "nvim-lsp-installer.server"
-local path = require "nvim-lsp-installer.core.path"
-local std = require "nvim-lsp-installer.core.managers.std"
-local github = require "nvim-lsp-installer.core.managers.github"
-
-return function(name, root_dir)
- return server.Server:new {
- name = name,
- root_dir = root_dir,
- homepage = "https://github.com/PowerShell/PowerShellEditorServices",
- languages = { "powershell" },
- installer = function()
- std.ensure_executable("pwsh", { help_url = "https://github.com/PowerShell/PowerShell#get-powershell" })
- github.unzip_release_file({
- repo = "PowerShell/PowerShellEditorServices",
- asset_file = "PowerShellEditorServices.zip",
- }).with_receipt()
- end,
- default_options = {
- bundle_path = path.concat { root_dir },
- },
- }
-end