26 lines
427 B
Lua
26 lines
427 B
Lua
|
return {
|
||
|
"neovim/nvim-lspconfig",
|
||
|
|
||
|
dependencies = {
|
||
|
"williamboman/mason.nvim",
|
||
|
},
|
||
|
|
||
|
config = function()
|
||
|
local lspconfig = require("lspconfig")
|
||
|
local mason = require("mason")
|
||
|
|
||
|
mason.setup({
|
||
|
ui = {
|
||
|
icons = {
|
||
|
package_installed = "✓",
|
||
|
package_pending = "➜",
|
||
|
package_uninstalled = "✗"
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
lspconfig.rust_analyzer.setup({})
|
||
|
|
||
|
end,
|
||
|
}
|