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

18 lines
251 B
Lua

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