Add ranger

This commit is contained in:
Paul-Henri Froidmont 2020-02-22 03:19:35 +01:00
parent 34fbb0f945
commit e5c913444f
5 changed files with 1096 additions and 0 deletions

View file

@ -2,6 +2,7 @@
{
home.packages = with pkgs; [
zsh-syntax-highlighting
ranger
];
programs.neovim = {
enable = true;
@ -70,4 +71,15 @@
}
];
};
home.file.".config/ranger" = {
source = ./files/ranger;
recursive = true;
};
home.file.".config/ranger/plugins" = {
source = builtins.fetchGit {
url = "git://github.com/alexanderjeurissen/ranger_devicons.git";
rev = "1fa1d0f29047979b9ffd541eb330756ac4b348ab";
};
recursive = true;
};
}