1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
nixos-config-reborn/home-manager/modules/ranger.nix
2024-12-17 19:48:40 +05:00

28 lines
494 B
Nix

{
programs.ranger = {
enable = true;
mappings = {
e = "edit";
};
settings = {
default_linemode = "devicons2";
};
plugins = [
{
name = "ranger-archives";
src = builtins.fetchGit {
url = "https://github.com/maximtrp/ranger-archives";
};
}
{
name = "ranger-devicons2";
src = builtins.fetchGit {
url = "https://github.com/cdump/ranger-devicons2";
};
}
];
};
}