Compatibility, bringing Sumireko into the fold. Deprecate katexprs.

This commit is contained in:
kat 2022-04-12 13:25:56 +01:00 committed by kat
parent efae399c70
commit 40edeef897
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
39 changed files with 879 additions and 175 deletions

View file

@ -27,7 +27,7 @@ in
yes = "me instead";
};
xdg.dataFile = { "z/.keep".text = ""; };
home.packages = with pkgs; [ fzf fd zsh-completions akiflags ];
home.packages = with pkgs; [ fzf fd zsh-completions ];
programs.zsh = {
enable = true;
enableSyntaxHighlighting = true;
@ -61,7 +61,10 @@ in
HISTFILE=/persist/home/.zsh_history
'' else ''
''}
${if pkgs.stdenv.system != "aarch64-darwin" then ''
eval $(dircolors)
'' else ''
''}
PROMPT_EOL_MARK='''
ZSH_TAB_TITLE_ADDITIONAL_TERMS='foot'
ZSH_TAB_TITLE_ENABLE_FULL_COMMAND=true
@ -124,6 +127,9 @@ in
src = "${pkgs.zsh-fzf-tab}/share/fzf-tab";
});
};
home.sessionVariables = {
XDG_DATA_HOME = "${config.xdg.dataHome}";
};
programs.fzf = {
enable = true;
enableZshIntegration = true;