17 lines
271 B
Lua
17 lines
271 B
Lua
return {
|
|
'Saecki/crates.nvim',
|
|
event = { 'BufRead Cargo.toml' },
|
|
opts = {
|
|
completion = {
|
|
crates = {
|
|
enabled = true,
|
|
},
|
|
},
|
|
lsp = {
|
|
enabled = true,
|
|
actions = true,
|
|
completion = true,
|
|
hover = true,
|
|
},
|
|
},
|
|
}
|