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;
};
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";