mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
28 lines
494 B
Nix
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";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|