fix: preconfiguredModules.bonvim: deprecations
All checks were successful
nix / check (push) Successful in 3m47s

This commit is contained in:
L-Nafaryus 2024-10-11 16:49:39 +05:00
parent 647c61580d
commit b1902d78d5
Signed by: L-Nafaryus
GPG Key ID: 553C97999B363D38

View File

@ -71,7 +71,7 @@
settings.system_clipboard.sync_with_ring = true; settings.system_clipboard.sync_with_ring = true;
}; };
extraPlugins = with pkgs.vimPlugins; [nvim-web-devicons]; plugins.web-devicons.enable = true;
diagnostics = { diagnostics = {
underline = true; underline = true;
@ -364,7 +364,7 @@
]; ];
}; };
cmake.enable = true; cmake.enable = true;
nil-ls.enable = true; nil_ls.enable = true;
# pylyzer.enable = true; # not working with virtual environments currently :( # pylyzer.enable = true; # not working with virtual environments currently :(
pylsp = { pylsp = {
enable = true; # https://github.com/nix-community/nixvim/pull/1893 enable = true; # https://github.com/nix-community/nixvim/pull/1893
@ -373,13 +373,13 @@
black.enabled = true; black.enabled = true;
}; };
}; };
rust-analyzer = { rust_analyzer = {
enable = true; enable = true;
package = rust-analyzer; package = rust-analyzer;
cargoPackage = cargo; cargoPackage = cargo;
rustcPackage = rustc; rustcPackage = rustc;
installCargo = true; installCargo = false;
installRustc = true; installRustc = false;
settings = { settings = {
checkOnSave = true; checkOnSave = true;
check.command = "clippy"; check.command = "clippy";