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

19 lines
251 B
Lua
Raw Normal View History

2024-10-08 12:37:20 +01:00
-- Configure LSP
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
2025-08-26 08:57:19 +01:00
ty = { enabled = 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
},
},
},
}