nvim/lua/plugins/rustaceanvim.lua

19 lines
364 B
Lua

return {
'mrcjkb/rustaceanvim',
version = '^8',
lazy = false,
init = function()
vim.g.rustaceamvim = {
server = {
settings = {
['rust-analyzer'] = {
completion = {
postfix = { enable = true },
autoimport = { enable = true },
},
},
},
},
}
end,
}