Config
This commit is contained in:
parent
7201dc4801
commit
be36a60446
36 changed files with 800 additions and 7 deletions
11
lua/custom/plugins/pwsh_es.lua
Normal file
11
lua/custom/plugins/pwsh_es.lua
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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 {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue