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
|
}: let
|
||||||
inherit (config.vars) neovimIde;
|
inherit (config.vars) neovimIde;
|
||||||
inherit (pkgs) vimPlugins;
|
inherit (pkgs) vimPlugins;
|
||||||
in
|
in {
|
||||||
lib.mkIf neovimIde {
|
|
||||||
programs = {
|
programs = {
|
||||||
# I love doing typos
|
# I love doing typos
|
||||||
bash.shellAliases = {
|
bash.shellAliases = {
|
||||||
|
@ -31,8 +30,9 @@ in
|
||||||
});
|
});
|
||||||
'';
|
'';
|
||||||
|
|
||||||
plugins = [
|
plugins =
|
||||||
|
lib.mkIf neovimIde [
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue