Set $TERM early

This commit is contained in:
ItsDrike 2024-03-26 09:54:24 +01:00
parent d8e718c1d4
commit 83679a1705
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -5,11 +5,15 @@ in
{
config = {
programs.zsh = {
initExtraFirst = ''
# Do this early so anything that relies on $TERM can work properly
${readFile ./rc/fallback_term.zsh}
'';
initExtra = ''
${readFile ./rc/opts.zsh}
${readFile ./rc/prompt.zsh}
${readFile ./rc/keybinds.zsh}
${readFile ./rc/fallback_term.zsh}
${readFile ./rc/aliases.zsh}
${readFile ./rc/functions.zsh}