eza ls config

This commit is contained in:
Ivan Kirilov Dimitrov 2024-07-08 21:32:14 +02:00
parent 754c20868d
commit c8ce02fe2d
No known key found for this signature in database
GPG Key ID: 0BDAD4B211C49294

View File

@ -129,6 +129,19 @@ toplevel@{ moduleWithSystem, ... }: {
''; '';
}; };
starship = { enable = true; enableNushellIntegration = true; enableZshIntegration = true; enableBashIntegration = true; }; starship = { enable = true; enableNushellIntegration = true; enableZshIntegration = true; enableBashIntegration = true; };
eza = {
enable = true;
enableZshIntegration = true;
enableBashIntegration = true;
extraOptions = [
"--header"
"--icons"
"--smart-group"
"--mounts"
"--octal-permissions"
"--git"
];
};
}; };
} }
); );