fixed typo

This commit is contained in:
Jake Pullen
2025-05-04 13:35:49 +01:00
parent 92b689f6c3
commit a5868c29c1
4 changed files with 65 additions and 44 deletions
+20
View File
@@ -0,0 +1,20 @@
HISTFILE=~/.config/zsh/.histfile
HISTSIZE=5000
SAVEHIST=100000
setopt autocd extendedglob
unsetopt beep
bindkey -v
# Enable colors and change prompt:
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# time at right hand side
RPROMPT='%F{15}(%F{166}%D{%H:%M}%F{15})%f'
export PATH=$PATH:$HOME/.local/bin
export EDITOR=zed
# Fixing zsh history problems on multiple terminals
setopt inc_append_history
setopt share_history
setopt histignorealldups