dotfiles/home/dot_config/lvim/lua/plugins/lsp.lua

27 lines
419 B
Lua

-- Configure LSP
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
ty = {
enabled = true,
settings = {
ty = {
experimental = {
rename = true,
},
},
},
},
},
},
{
"mason-org/mason.nvim",
opts = {
ensure_installed = { "ty" },
},
},
},
}