nvim/lua/plugins/rustaceanvim.lua
Zoty d65c4083ba
add trouble
side note? why was I using feat and chore and etc?
2026-04-07 11:46:51 -03:00

19 lines
364 B
Lua

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