added pwsh services
This commit is contained in:
parent
0a55a7ca9c
commit
455a5a252c
9
init.lua
9
init.lua
|
|
@ -619,7 +619,9 @@ do
|
||||||
terraformls = {},
|
terraformls = {},
|
||||||
ansiblels = {},
|
ansiblels = {},
|
||||||
jinja_lsp = {},
|
jinja_lsp = {},
|
||||||
hclfmt = {},
|
powershell_es = {
|
||||||
|
bundle_path = vim.fn.stdpath('data') .. '/mason/packages/powershell-editor-services',
|
||||||
|
},
|
||||||
stylua = {}, -- Used to format Lua code
|
stylua = {}, -- Used to format Lua code
|
||||||
|
|
||||||
-- Special Lua Config, as recommended by neovim help docs
|
-- Special Lua Config, as recommended by neovim help docs
|
||||||
|
|
@ -651,7 +653,7 @@ do
|
||||||
---@type lspconfig.settings.lua_ls
|
---@type lspconfig.settings.lua_ls
|
||||||
settings = {
|
settings = {
|
||||||
Lua = {
|
Lua = {
|
||||||
format = { enable = false }, -- Disable formatting (formatting is done by stylua)
|
format = { enable = true }, -- Disable formatting (formatting is done by stylua)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -701,7 +703,8 @@ do
|
||||||
local enabled_filetypes = {
|
local enabled_filetypes = {
|
||||||
go = true,
|
go = true,
|
||||||
hcl = true,
|
hcl = true,
|
||||||
-- lua = true,
|
ps1 = true,
|
||||||
|
lua = true,
|
||||||
-- python = true,
|
-- python = true,
|
||||||
}
|
}
|
||||||
if enabled_filetypes[vim.bo[bufnr].filetype] then
|
if enabled_filetypes[vim.bo[bufnr].filetype] then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue