We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91f1e57 commit 646074bCopy full SHA for 646074b
airootfs/root/.zshrc
@@ -240,18 +240,3 @@ eval "$(mcfly init zsh)"
240
241
## Run neofetch
242
#neofetch
243
-
244
-# Show time to the user which was the last executed code
245
-function preexec() {
246
- timer=$(($(date +%s%0N)/1000000))
247
-}
248
249
-function precmd() {
250
- if [ $timer ]; then
251
- now=$(($(date +%s%0N)/1000000))
252
- elapsed=$(($now-$timer))
253
254
- export RPROMPT="%F{cyan}${elapsed}ms %{$reset_color%}"
255
- unset timer
256
- fi
257
0 commit comments