Skip to content

Commit

Permalink
Add support for timing app in zsh
Browse files Browse the repository at this point in the history
  • Loading branch information
KELiON committed Apr 22, 2019
1 parent 1c40488 commit a319bba
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion zsh/zshrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ compinit
for config_file ($ZSH/**/completion.zsh) source $config_file

source ~/.iterm2_shell_integration.`basename $SHELL`
export PATH="$HOME/.yarn/bin:$PATH"

[[ -s "/etc/grc.zsh" ]] && source /etc/grc.zsh

[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh

# added by travis gem
[ -f /Users/kelion/.travis/travis.sh ] && source /Users/kelion/.travis/travis.sh

# Support for Timing app
PROMPT_TITLE='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007"'
export PROMPT_COMMAND="${PROMPT_TITLE}; ${PROMPT_COMMAND}"

0 comments on commit a319bba

Please sign in to comment.