mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 05:29:42 +00:00
Set $TERM early
This commit is contained in:
parent
d8e718c1d4
commit
83679a1705
|
@ -5,11 +5,15 @@ in
|
||||||
{
|
{
|
||||||
config = {
|
config = {
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
|
initExtraFirst = ''
|
||||||
|
# Do this early so anything that relies on $TERM can work properly
|
||||||
|
${readFile ./rc/fallback_term.zsh}
|
||||||
|
'';
|
||||||
|
|
||||||
initExtra = ''
|
initExtra = ''
|
||||||
${readFile ./rc/opts.zsh}
|
${readFile ./rc/opts.zsh}
|
||||||
${readFile ./rc/prompt.zsh}
|
${readFile ./rc/prompt.zsh}
|
||||||
${readFile ./rc/keybinds.zsh}
|
${readFile ./rc/keybinds.zsh}
|
||||||
${readFile ./rc/fallback_term.zsh}
|
|
||||||
|
|
||||||
${readFile ./rc/aliases.zsh}
|
${readFile ./rc/aliases.zsh}
|
||||||
${readFile ./rc/functions.zsh}
|
${readFile ./rc/functions.zsh}
|
||||||
|
|
Loading…
Reference in a new issue