Added ranger config inside its own module

This commit is contained in:
Emmet 2023-06-08 15:58:04 -05:00
parent cfb1187e76
commit e7d4c1192b
8 changed files with 3728 additions and 4 deletions

View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
ranger
xdragon
];
home.file.".config/ranger/rc.conf".source = ./rc.conf;
home.file.".config/ranger/rifle.conf".source = ./rifle.conf;
home.file.".config/ranger/scope.sh" = {
source = ./scope.sh;
executable = true;
};
home.file.".config/ranger/commands.py" = {
source = ./commands.py;
executable = true;
};
home.file.".config/ranger/commands_full.py" = {
source = ./commands_full.py;
executable = true;
};
home.file.".config/ranger/colorschemes/hail.py" = {
source = ./colorschemes/hail.py;
executable = true;
};
}