mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-24 09:13:09 +01:00
meta: Prefer home-manager module over alias for ripgrep
Aliases should be avoided since they are only relevant to one shell.
This commit is contained in:
parent
1defdcf785
commit
2b8fc665f6
@ -27,7 +27,6 @@
|
|||||||
tree = "eza --all --long --tree";
|
tree = "eza --all --long --tree";
|
||||||
mv = "mv -i";
|
mv = "mv -i";
|
||||||
cp = "cp -ia";
|
cp = "cp -ia";
|
||||||
rg = "rg --max-columns=2000 --smart-case";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
shellAbbrs = {
|
shellAbbrs = {
|
||||||
|
10
home/ripgrep.nix
Normal file
10
home/ripgrep.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
programs.ripgrep = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
arguments = [
|
||||||
|
"--max-columns=2000"
|
||||||
|
"--smart-case"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -21,7 +21,6 @@ in
|
|||||||
jq
|
jq
|
||||||
fd
|
fd
|
||||||
fzf
|
fzf
|
||||||
ripgrep
|
|
||||||
xh
|
xh
|
||||||
file
|
file
|
||||||
timg
|
timg
|
||||||
|
Loading…
Reference in New Issue
Block a user