fix(nvim): keep bash settings even when not using as IDE
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
9c9945523c
commit
0667f0f4c9
1 changed files with 29 additions and 29 deletions
|
@ -6,8 +6,7 @@
|
|||
}: let
|
||||
inherit (config.vars) neovimIde;
|
||||
inherit (pkgs) vimPlugins;
|
||||
in
|
||||
lib.mkIf neovimIde {
|
||||
in {
|
||||
programs = {
|
||||
# I love doing typos
|
||||
bash.shellAliases = {
|
||||
|
@ -31,7 +30,8 @@ in
|
|||
});
|
||||
'';
|
||||
|
||||
plugins = [
|
||||
plugins =
|
||||
lib.mkIf neovimIde [
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue