my shell and tool configurations

add CMD_DURATION to right prompt

+6
+6
fish/.config/fish/functions/fish_right_prompt.fish
··· 1 + function fish_right_prompt 2 + if test $CMD_DURATION 3 + printf %.3fs $(math $CMD_DURATION / 1000) 4 + end 5 + end 6 +