mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:13:55 -05:00
home/bash: enable ripgrep
This commit is contained in:
parent
8462a15aa6
commit
e85b3a1435
|
@ -6,18 +6,6 @@
|
||||||
}: {
|
}: {
|
||||||
config = lib.mkIf config.alyraffauf.apps.bash.enable {
|
config = lib.mkIf config.alyraffauf.apps.bash.enable {
|
||||||
programs = {
|
programs = {
|
||||||
eza = {
|
|
||||||
enable = true;
|
|
||||||
extraOptions = ["--group-directories-first" "--header"];
|
|
||||||
git = true;
|
|
||||||
icons = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
fzf = {
|
|
||||||
enable = true;
|
|
||||||
tmux.enableShellIntegration = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
bash = {
|
bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
|
@ -40,6 +28,19 @@
|
||||||
cat = lib.getExe pkgs.bat;
|
cat = lib.getExe pkgs.bat;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
eza = {
|
||||||
|
enable = true;
|
||||||
|
extraOptions = ["--group-directories-first" "--header"];
|
||||||
|
git = true;
|
||||||
|
icons = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
fzf = {
|
||||||
|
enable = true;
|
||||||
|
tmux.enableShellIntegration = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
ripgrep.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue