mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2026-09-26 09:11:55 +02:00
This makes it convenient to hack on the indexing work, which requires an opt-in Cargo feature.
13 lines
192 B
Lua
13 lines
192 B
Lua
vim.lsp.config('rust_analyzer', {
|
|
settings = {
|
|
['rust-analyzer'] = {
|
|
cargo = {
|
|
features = 'all',
|
|
},
|
|
check = {
|
|
features = 'all',
|
|
},
|
|
},
|
|
},
|
|
})
|