1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Alias less to bat

This commit is contained in:
RGBCube 2023-11-20 11:42:49 +03:00
parent c936f48f1f
commit 11db39628a
No known key found for this signature in database

View file

@ -6,7 +6,10 @@ homeConfiguration [ "nixos" "root" ] {
PAGER = ''"bat --plain"'';
};
programs.nushell.shellAliases.cat = "bat";
programs.nushell.shellAliases = {
cat = "bat";
less = "bat --plain";
};
programs.bat = enabled {
config.theme = "gruvbox-dark";