aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/powershell_es.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/powershell_es.lua')
-rw-r--r--lua/lspconfig/powershell_es.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/lua/lspconfig/powershell_es.lua b/lua/lspconfig/powershell_es.lua
index c76d5b16..0f621a1d 100644
--- a/lua/lspconfig/powershell_es.lua
+++ b/lua/lspconfig/powershell_es.lua
@@ -1,15 +1,15 @@
-local configs = require "lspconfig/configs"
-local util = require "lspconfig/util"
+local configs = require 'lspconfig/configs'
+local util = require 'lspconfig/util'
-local server_name = "powershell_es"
-local temp_path = vim.fn.stdpath "cache"
+local server_name = 'powershell_es'
+local temp_path = vim.fn.stdpath 'cache'
local function make_cmd(bundle_path)
if bundle_path ~= nil then
local command_fmt =
[[%s/PowerShellEditorServices/Start-EditorServices.ps1 -BundledModulesPath %s -LogPath %s/powershell_es.log -SessionDetailsPath %s/powershell_es.session.json -FeatureFlags @() -AdditionalModules @() -HostName nvim -HostProfileId 0 -HostVersion 1.0.0 -Stdio -LogLevel Normal]]
local command = command_fmt:format(bundle_path, bundle_path, temp_path, temp_path)
- return { "pwsh", "-NoLogo", "-NoProfile", "-Command", command }
+ return { 'pwsh', '-NoLogo', '-NoProfile', '-Command', command }
end
end
@@ -19,7 +19,7 @@ configs[server_name] = {
local bundle_path = new_config.bundle_path
new_config.cmd = make_cmd(bundle_path)
end,
- filetypes = { "ps1" },
+ filetypes = { 'ps1' },
root_dir = function(fname)
return util.find_git_ancestor(fname) or vim.fn.getcwd()
end,
@@ -54,7 +54,7 @@ require'lspconfig'.powershell_es.setup{
```
]],
default_config = {
- root_dir = "git root or current directory",
+ root_dir = 'git root or current directory',
},
},
}