clean up unused powershell LSP files

This commit is contained in:
Eric Olerud 2025-01-22 06:18:53 -05:00
parent f06e75476a
commit 138fd96e07
1 changed files with 0 additions and 11 deletions

View File

@ -555,17 +555,6 @@ require('lazy').setup({
server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {}) server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {})
require('lspconfig')[server_name].setup(server) require('lspconfig')[server_name].setup(server)
end, end,
powershell_es = function()
local lspconfig = require 'lspconfig'
lspconfig.powershell_es.setup {
bundle_path = '~/Appdata/Local/nvim/powershell',
on_attach = function(client, bufnr)
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
end,
settings = { powershell = { codeFormatting = { Preset = 'OTBS' } } },
}
end,
}, },
} }
-- Godot's LSP - Requires Godot to be running -- Godot's LSP - Requires Godot to be running