Move to Xonsh, add hypr scripts

This commit is contained in:
Julia Lange 2024-01-20 14:03:54 -08:00
parent d7f9f10d30
commit f78a2ab527
13 changed files with 224 additions and 48 deletions

View file

@ -0,0 +1,15 @@
{ 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;
};
}