mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +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";
|
||||
mv = "mv -i";
|
||||
cp = "cp -ia";
|
||||
rg = "rg --max-columns=2000 --smart-case";
|
||||
};
|
||||
|
||||
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
|
||||
fd
|
||||
fzf
|
||||
ripgrep
|
||||
xh
|
||||
file
|
||||
timg
|
||||
|
Loading…
Reference in New Issue
Block a user