nixconf/home-manager/eza.nix
Gabriella Bere 0eea3fe016 attempted to sync nvim clipboard with system clipboard, gave up.
corrected eza config due to updated non-boolean value for eza.icons
2024-10-23 22:31:40 +01:00

9 lines
131 B
Nix

{ pkgs, ... }:
{
programs.eza = {
enable = true;
enableZshIntegration = true;
git = true;
icons = "auto";
};
}