diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-07-13 10:41:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-13 10:41:39 -0700 |
| commit | cd1ccf056be9cbcc3d5cbefff08135276bc476ed (patch) | |
| tree | 82a0d7f77d4782b1aa06668298b48d7cf5ecb511 /lua/lspconfig/powershell_es.lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| download | nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.gz nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.bz2 nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.lz nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.xz nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.zst nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.zip | |
chore: change stylua to single quotes (#1068)
Diffstat (limited to 'lua/lspconfig/powershell_es.lua')
| -rw-r--r-- | lua/lspconfig/powershell_es.lua | 14 |
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', }, }, } |
