nvim/lua/plugins/rustaceanvim.lua
2026-04-13 15:53:16 -03:00

19 lines
364 B
Lua

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