mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
Set $TERM early
This commit is contained in:
parent
d8e718c1d4
commit
83679a1705
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue