mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-05 18:01:32 +00:00
fix: null_ls deprecated on crates.nvim
Signed-off-by: Christopher Valerio <christopher@valerio.guru>
This commit is contained in:
parent
0334e94212
commit
064d8b7565
1 changed files with 4 additions and 4 deletions
|
@ -112,10 +112,10 @@ in {
|
|||
pluginRC.rust-crates = entryAnywhere ''
|
||||
require('crates').setup {
|
||||
lsp = {
|
||||
enabled = true,
|
||||
actions = true,
|
||||
completion = true,
|
||||
hover = true,
|
||||
enabled = ${boolToString cfg.crates.enable},
|
||||
actions = ${boolToString cfg.crates.codeActions},
|
||||
completion = ${boolToString cfg.crates.enable},
|
||||
hover = ${boolToString cfg.crates.enable},
|
||||
},
|
||||
}
|
||||
'';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue