From 2dc922e440627cd6b6d7d8cfd6814277bcb33e5a Mon Sep 17 00:00:00 2001 From: Thierry Schork Date: Mon, 7 Jul 2025 19:27:45 +0200 Subject: [PATCH] zsh alwyas starts in home dir --- .zshrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index 614e3ab..7717b42 100644 --- a/.zshrc +++ b/.zshrc @@ -1,5 +1,7 @@ neofetch +cd ~ + # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below. @@ -63,7 +65,7 @@ ZSH_THEME="agnoster" # Uncomment the following line if you want to disable marking untracked files # under VCS as dirty. This makes repository status check for large repositories # much, much faster. -# DISABLE_UNTRACKED_FILES_DIRTY="true" +DISABLE_UNTRACKED_FILES_DIRTY="true" # Uncomment the following line if you want to change the command execution time # stamp shown in the history command output. @@ -82,7 +84,7 @@ HIST_STAMPS="yyyy/mm/dd" # Custom plugins may be added to $ZSH_CUSTOM/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git chucknorris zsh-autosuggestions zsh-syntax-highlighting ) +plugins=(git zsh-autosuggestions zsh-syntax-highlighting ) source $ZSH/oh-my-zsh.sh