profiles/dev: configure tealdeer

This commit is contained in:
Gabriel Arazas 2023-12-12 09:58:04 +08:00
parent 29e813ee05
commit bd732601f4
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -24,8 +24,6 @@ in {
gopass # An improved version of the password manager for hipsters.
moar # More 'more'.
perlPackages.vidir # Bulk rename for your organizing needs in the terminal.
tealdeer # An easy cop-out for basic help.
];
# Git interface for the lazy who cannot be asked to add hunks properly.
@ -84,6 +82,19 @@ in {
'';
};
programs.tealdeer = {
enable = true;
settings = {
display.use_pager = true;
description = {
foreground = "green";
background = "black";
};
command.underline = true;
updates.auto_update = false;
};
};
# Echolocation.
programs.nix-index.enable = lib.mkIf (attrs ? osConfig -> !attrs.osConfig.programs.nix-index.enable) true;
})