Add ranger_devicons
This commit is contained in:
parent
b5e7eae202
commit
aa57c40d9d
2 changed files with 16 additions and 1 deletions
|
@ -7,6 +7,7 @@ in
|
|||
{
|
||||
imports = [
|
||||
../vim.nix
|
||||
../ranger.nix
|
||||
../fcitx5.nix
|
||||
../wallpaper.nix
|
||||
../picom.nix
|
||||
|
@ -50,7 +51,6 @@ in
|
|||
# Command line utilities
|
||||
wget
|
||||
neofetch
|
||||
ranger
|
||||
trash-cli # aliased to rm in .bashrc
|
||||
|
||||
# GUI applications
|
||||
|
|
15
ranger.nix
Normal file
15
ranger.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ ranger ];
|
||||
|
||||
home.file = {
|
||||
".config/ranger/plugins/ranger_devicons".source = pkgs.fetchFromGitHub {
|
||||
owner = "alexanderjeurissen";
|
||||
repo = "ranger_devicons";
|
||||
rev = "49fe4753c89615a32f14b2f4c78bbd02ee76be3c";
|
||||
sha256 = "YT7YFiTA2XtIoVzaVjUWMu6j4Nwo4iGzvOtjjWva/80=";
|
||||
};
|
||||
".config/ranger/rc.conf".text = "default_linemode devicons";
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue