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

Fix bat escapes

This commit is contained in:
RGBCube 2024-01-15 17:21:34 +03:00
parent 784e9c4395
commit c28ceb50f7
No known key found for this signature in database

View file

@ -6,13 +6,12 @@ homeConfiguration {
PAGER = ''"bat --plain"'';
};
programs.nushell.shellAliases = {
cat = "bat";
less = "bat --plain";
};
programs.nushell.shellAliases.cat = "bat";
programs.bat = enabled {
config.theme = "base16";
themes.base16.src = pkgs.writeText "base16.tmTheme" theme.tmTheme;
config.pager = "less -FR";
};
}