1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +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";
};
environment.shellAliases.cat = "bat";
environment.shellAliases = {
cat = "bat";
less = "bat --plain";
};
})
(homeConfiguration {

View file

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