flake update.

This commit is contained in:
Gabe Venberg 2024-11-06 14:00:50 +01:00
parent 6608679a60
commit f44fd68fbd
5 changed files with 73 additions and 48 deletions

View file

@ -26,8 +26,8 @@
};
programs.nushell.extraEnv = ''
$env.EDITOR = nvim
$env.VISUAL = nvim
$env.EDITOR = 'nvim'
$env.VISUAL = 'nvim'
'';
};

View file

@ -184,7 +184,7 @@
];
};
imports = [
./rust-tools.nix
./rustaceanvim.nix
./clangd.nix
];
}

View file

@ -8,12 +8,8 @@
lib.mkIf (config.user.nvim.enable-lsp && config.user.nvim.enable)
{
programs.nixvim = {
plugins.rust-tools = {
plugins.rustaceanvim = {
enable = true;
server = {
checkOnSave = true;
check.command = "clippy";
};
};
};
};