1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 20:17:45 +00:00

Make less = bat

This commit is contained in:
RGBCube 2024-04-30 12:56:08 +03:00
parent 917d1dfd45
commit b3a23637f9
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View file

@ -6,7 +6,10 @@
PAGER = "bat --plain"; PAGER = "bat --plain";
}; };
environment.shellAliases.cat = "bat"; environment.shellAliases = {
cat = "bat";
less = "bat --plain";
};
}) })
(homeConfiguration { (homeConfiguration {

View file

@ -13,7 +13,6 @@
mv = "mv --verbose"; mv = "mv --verbose";
rm = "rm --recursive --verbose"; rm = "rm --recursive --verbose";
less = "less -FR";
pstree = "pstree -g 2"; pstree = "pstree -g 2";
tree = "tree -CF --dirsfirst"; tree = "tree -CF --dirsfirst";
}; };