This commit is contained in:
Till 2024-12-26 16:07:44 +01:00
parent 5fabec3fa3
commit 4fb0d3aa6c
17 changed files with 75 additions and 34 deletions

13
home/vifm/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
programs.vifm = {
enable = true;
extraConfig = "
colorscheme light
set vicmd=nvim
filetype * xdg-open
";
};
xdg.configFile."vifm/colors/light.vifm".source = ./light.vifm;
}