diff options
author | Hendrik Jäger <gitcommit@henk.geekmail.org> | 2022-12-29 12:30:00 +0100 |
---|---|---|
committer | Hendrik Jäger <gitcommit@henk.geekmail.org> | 2022-12-29 12:30:00 +0100 |
commit | eae61081d951091aa20a586486db8722cfb087ed (patch) | |
tree | 9878e059d1c9b4ec9a5dedfd07f7adfa1732fc6c | |
parent | 5c5cde223c9d7afa6603f272fdf0b1f8fce7ef5d (diff) |
fix: do not export zsh settings
-rw-r--r-- | .zshrc | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -2,13 +2,12 @@ # zmodload zsh/zprof -# exports are usually independent and standalone -# so they can stay at the top +# settings for the zsh don’t get exported # where to write history -export HISTFILE=~/.zsh_history -export HISTSIZE=1000000000 -export SAVEHIST=1000000000 +HISTFILE=~/.zsh_history +HISTSIZE=1000000000 +SAVEHIST=1000000000 export ANSIBLE_NOCOWS=1 export ANSIBLE_STRATEGY=mitogen_linear |