diff options
Diffstat (limited to '.config/zsh')
| -rw-r--r-- | .config/zsh/.zshrc | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 448e0d0..44fa2c1 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -1,6 +1,10 @@  # Enable colors and change prompt:  autoload -U colors && colors	# Load colors +clp(){ +  yes | paru -Scc +} +  git_status(){  if git rev-parse --is-inside-work-tree > /dev/null 2>&1; then    gbranch=$(git branch --show-current) @@ -56,7 +60,7 @@ else  fi  } -PS1='%{$fg[white]%}%n@%m %{$fg[yellow]%}%~ %{$fg[magenta]%}$(git_status)%{$fg[white]%}$ %{$reset_color%}' +PS1='%{$fg[brightwhite]%}%n@%m %{$fg[yellow]%}%~ %{$fg[magenta]%}$(git_status)%{$fg[white]%}$ %{$reset_color%}'  setopt autocd		# Automatically cd into typed directory.  stty stop undef		# Disable ctrl-s to freeze terminal.  setopt interactive_comments  |