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

19 lines
235 B
Lua
Raw Normal View History

2024-10-08 12:37:20 +01:00
-- Configure LSP
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
2025-07-08 20:43:29 +01:00
ty = {},
},
},
{
"mason-org/mason.nvim",
opts = {
ensure_installed = { "ty" },
2024-10-08 12:37:20 +01:00
},
},
},
}