# along with this file. If not, see <http://www.gnu.org/licenses/>.
-source_debug ". ~/.zsh/rc"
+source_debug '. ~/.zsh/rc'
# HELPER FUNCTIONS
if [[ $OSTYPE == linux* ]]; then
# Settings when creating Debian packages.
- DEBEMAIL=simon@ruderich.org
- export DEBEMAIL
- DEBFULLNAME='Simon Ruderich'
- export DEBFULLNAME
+ export DEBEMAIL=simon@ruderich.org
+ export DEBFULLNAME='Simon Ruderich'
fi
# As we exec later we have to set the title here.
if [[ $use_multiplexer = screen ]]; then
- window_preexec "screen"
+ window_preexec screen
elif [[ $use_multiplexer = tmux ]]; then
- window_preexec "tmux"
+ window_preexec tmux
fi
# Create a new session if none is running.
# Moved in the "run commands" section to prevent one unnecessary zsh process
# when starting GNU screen/tmux (see above).
exec 2>>(while read -r -k -u 0 line; do
- printf '\e[91m%s\e[0m' "$line";
- print -n $'\0';
+ printf '\e[91m%s\e[0m' "$line"
+ print -n $'\0'
done &)
# Run the following programs every 4 hours (and when zsh starts).
}
-source_debug ". ~/.zsh/rc (done)"
+source_debug '. ~/.zsh/rc (done)'
# vim: ft=zsh