aboutsummaryrefslogtreecommitdiff
path: root/config/zsh/plugins/timer.zsh
blob: 36108779f2ea4e6aee132346f89966a51630e2ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
function preexec() {
  timer=$(($(date +%s%0N)/1000000))
}

function precmd() {
  if [ $timer ]; then
    now=$(($(date +%s%0N)/1000000))
    elapsed=$(($now-$timer))

    export RPROMPT="%F{cyan}${elapsed}ms %{$reset_color%}"
    unset timer
  fi
}