dot.nix/home/global/core/ranger.nix
Chris Toph 270ebded3d Refactor config paths & update host imports
• Relocates common configurations from a user-specific directory to a global hierarchy
• Adds host-specific files and updates import paths for better modularity
• Introduces an experimental GNOME mutter feature
2025-05-27 14:44:19 -04:00

26 lines
615 B
Nix

{
programs.ranger = {
enable = true;
plugins = [
{
name = "zoxide";
src = builtins.fetchGit {
url = "https://github.com/jchook/ranger-zoxide.git";
rev = "281828de060299f73fe0b02fcabf4f2f2bd78ab3";
};
}
{
name = "archives";
src = builtins.fetchGit {
url = "https://github.com/maximtrp/ranger-archives.git";
rev = "b4e136b24fdca7670e0c6105fb496e5df356ef25";
};
}
];
settings = {
show_hidden = true;
# preview_images = true;
# preview_images_method = w3m;
};
};
}