From 3bdb802fd25dfbd1208b5469f4682d95820c0094 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Fri, 16 May 2025 11:36:55 +0300 Subject: [PATCH] Removed time taken for zsh to load as it went down from 0.5s to 0.05s so basically instant --- .zshrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.zshrc b/.zshrc index 3031b9c..07cd7e6 100644 --- a/.zshrc +++ b/.zshrc @@ -1,5 +1,3 @@ -START_TIME=$(date +%s.%3N) - # Install zinit if missing if [[ ! -f $HOME/.local/share/zinit/zinit.git/zinit.zsh ]]; then print -P "%F{33} %F{220}Installing %F{33}ZDHARMA-CONTINUUM%F{220} Initiative Plugin Manager (%F{33}zdharma-continuum/zinit%F{220})…%f" @@ -131,6 +129,3 @@ fi if [ -z "$TMUX" ]; then k switch $HOME fi - -END_TIME=$(date +%s.%4N) -echo "Zsh startup time: $(echo "${END_TIME} - ${START_TIME}" | bc) seconds"