blob: 6fd488d4bb34212c6e12025bbd39445675cf430c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
flake.modules.homeManager.bash =
{
pkgs,
...
}:
{
home.packages = with pkgs; [
zoxide
];
programs.bash = {
enable = true;
enableCompletion = true;
initExtra = ''
# view man pages with nvim
export MANPAGER="nvim +Man!"
# vim keybindings
set -o vi
# zoxide smarter cd command
eval "$(zoxide init bash)"
'';
shellAliases = {
ls = "ls --color=auto";
};
};
};
}
|