Files
VoidVim/lua/config/plugins/rustaceanvim.lua
doryan 3f05e62ac8 feat(plugin): remove nvim-navic
feat(plugin): remove nvim-navic
2025-04-17 18:40:05 +04:00

29 lines
459 B
Lua

vim.g.rustaceanvim = {
server = {
settings = {
['rust-analyzer'] = {
procMacro = {
enable = true,
},
assist = {
importEnforceGranularity = true,
importPrefix = "create"
},
cargo = {
allFeatures = true,
},
checkOnSave = {
command = "clippy",
allFeatures = true
},
inlayHints = {
lifetimeElisionHints = {
enable = true,
useParameterNames = true
}
}
}
}
}
}