fix: null_ls deprecated on crates.nvim

Signed-off-by: Christopher Valerio <christopher@valerio.guru>
This commit is contained in:
Christopher Valerio 2025-09-01 11:34:08 -06:00
commit 064d8b7565
No known key found for this signature in database
GPG key ID: 56368034522CF3A9

View file

@ -112,10 +112,10 @@ in {
pluginRC.rust-crates = entryAnywhere '' pluginRC.rust-crates = entryAnywhere ''
require('crates').setup { require('crates').setup {
lsp = { lsp = {
enabled = true, enabled = ${boolToString cfg.crates.enable},
actions = true, actions = ${boolToString cfg.crates.codeActions},
completion = true, completion = ${boolToString cfg.crates.enable},
hover = true, hover = ${boolToString cfg.crates.enable},
}, },
} }
''; '';