From b1902d78d5d757486dcd19c2a9c82077ed5e14c9 Mon Sep 17 00:00:00 2001 From: L-Nafaryus Date: Fri, 11 Oct 2024 16:49:39 +0500 Subject: [PATCH] fix: preconfiguredModules.bonvim: deprecations --- lib/preconfiguredModules/bonvim.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/preconfiguredModules/bonvim.nix b/lib/preconfiguredModules/bonvim.nix index ca95ec8..63c644c 100644 --- a/lib/preconfiguredModules/bonvim.nix +++ b/lib/preconfiguredModules/bonvim.nix @@ -71,7 +71,7 @@ settings.system_clipboard.sync_with_ring = true; }; - extraPlugins = with pkgs.vimPlugins; [nvim-web-devicons]; + plugins.web-devicons.enable = true; diagnostics = { underline = true; @@ -364,7 +364,7 @@ ]; }; cmake.enable = true; - nil-ls.enable = true; + nil_ls.enable = true; # pylyzer.enable = true; # not working with virtual environments currently :( pylsp = { enable = true; # https://github.com/nix-community/nixvim/pull/1893 @@ -373,13 +373,13 @@ black.enabled = true; }; }; - rust-analyzer = { + rust_analyzer = { enable = true; package = rust-analyzer; cargoPackage = cargo; rustcPackage = rustc; - installCargo = true; - installRustc = true; + installCargo = false; + installRustc = false; settings = { checkOnSave = true; check.command = "clippy";