mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
18 lines
289 B
Nix
18 lines
289 B
Nix
|
{ config, lib, pkgs, home-manager, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
programs.yazi = {
|
||
|
enable = true;
|
||
|
enableZshIntegration = true;
|
||
|
settings = {
|
||
|
sort_by = "natural";
|
||
|
sort_sensitive = false;
|
||
|
sort_dir_first = true;
|
||
|
show_hidden = true;
|
||
|
show_symlink = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|