nix-dotfiles/programs/xonsh/default.nix

16 lines
297 B
Nix
Raw Normal View History

2024-01-20 14:03:54 -08:00
{ config, pkgs, ... }:
{
programs.xonsh.enable = true;
programs.xonsh.interactiveShellInit = ''
cat ~/.cache/wal/sequences
'';
home.sessionVariables = {
PROMPT = "τ ";
RIGHT_PROMPT = "{YELLOW}{gitstatus: {} }{BLUE}{short_cwd}{DEFAULT}";
VI_MODE = 1;
};
}