19 lines
364 B
Lua
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,
|
|
}
|