converted from packer to lazy
This commit is contained in:
parent
8c70ffcc1f
commit
7b6c664ceb
14 changed files with 137 additions and 96 deletions
25
.config/nvim/lua/plugins/mason.lua
Normal file
25
.config/nvim/lua/plugins/mason.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue