12 lines
356 B
Lua
12 lines
356 B
Lua
local lspconfig = require 'lspconfig'
|
|
local bundle_path = '~/Lsp/PowerShellEditorServices'
|
|
local default_capabilities = require('cmp_nvim_lsp').default_capabilities()
|
|
lspconfig.powershell_es.setup {
|
|
capabilities = default_capabilities,
|
|
bundle_path = bundle_path,
|
|
filetypes = { 'ps1' },
|
|
init_options = { enableProfileLoading = false },
|
|
}
|
|
|
|
return {}
|