aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins/lsp.lua
blob: 0574c47fe0637969df568cabb55cc9cdfcf19b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
return {
    {
		"neovim/nvim-lspconfig",
		config = function()
			local lspconfig = require("lspconfig")

			lspconfig.pylsp.setup({})
		end,
	},
    { "mason-org/mason.nvim", opts = {} },
    {
        "mason-org/mason-lspconfig.nvim",
        dependencies = {
            "mason-org/mason.nvim",
            "neovim/nvim-lspconfig",
        },
        opts = {
            ensure_installed = { 
                "ty",
                "elixirls",
                "gopls"
            },
        },
    },
}