dots-of-war/eggs/nvim/lua/plugins/rust.lua

13 lines
247 B
Lua
Raw Normal View History

2025-01-06 16:37:50 +01:00
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,
},
},
}