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

28 lines
419 B
Lua
Raw Normal View History

2024-10-08 12:37:20 +01:00
-- Configure LSP
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
2025-08-27 11:40:16 +01:00
ty = {
enabled = true,
settings = {
ty = {
experimental = {
rename = true,
},
},
},
},
2025-07-08 20:43:29 +01:00
},
},
{
"mason-org/mason.nvim",
opts = {
ensure_installed = { "ty" },
2024-10-08 12:37:20 +01:00
},
},
},
}