mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-24 09:09:03 +00:00
Set $TERM early
This commit is contained in:
parent
d8e718c1d4
commit
83679a1705
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue