Files
Andrew Gallant d57de83a94 nvim: enable all Cargo features
This makes it convenient to hack on the indexing work, which requires an
opt-in Cargo feature.
2026-07-22 11:51:56 -04:00

13 lines
192 B
Lua

vim.lsp.config('rust_analyzer', {
settings = {
['rust-analyzer'] = {
cargo = {
features = 'all',
},
check = {
features = 'all',
},
},
},
})