home/{zsh,bash}: add mutable source
This commit is contained in:
parent
221e425235
commit
3497d51db6
|
@ -122,6 +122,9 @@ in {
|
|||
enable = true;
|
||||
historyFile = "${config.xdg.dataHome}/bash_history";
|
||||
historySize = 100000;
|
||||
bashrcExtra = ''
|
||||
source "${config.xdg.configHome}/mutable_env.sh"
|
||||
'';
|
||||
};
|
||||
|
||||
bat.enable = true;
|
||||
|
|
|
@ -84,6 +84,8 @@ in
|
|||
if ! { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then
|
||||
zstyle ':fzf-tab:*' fzf-command ftb-tmux-popup
|
||||
fi
|
||||
|
||||
source "${config.xdg.configHome}/mutable_env.sh"
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue