mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-02-20 04:12:14 +00:00
13 lines
247 B
Lua
13 lines
247 B
Lua
|
return {
|
||
|
'neovim/nvim-lspconfig',
|
||
|
opts = {
|
||
|
setup = {
|
||
|
-- Fix a problem with rust_analyzer being installed with lazyvim
|
||
|
-- see `:h rustaceanvim.mason`
|
||
|
rust_analyzer = function()
|
||
|
return true
|
||
|
end,
|
||
|
},
|
||
|
},
|
||
|
}
|