2023-07-25 03:26:05 +02:00
|
|
|
autoload -Uz promptinit
|
|
|
|
promptinit
|
|
|
|
|
|
|
|
bindkey -e
|
|
|
|
|
|
|
|
bindkey "^[[1;5C" forward-word
|
|
|
|
bindkey "^[[1;5D" backward-word
|
|
|
|
bindkey "^[[3;5~" backward-kill-word
|
|
|
|
|
|
|
|
setopt histignorealldups sharehistory
|
|
|
|
|
|
|
|
HISTSIZE=5000
|
|
|
|
SAVEHIST=5000
|
|
|
|
HISTFILE=$HOME/.config/zsh/zsh_history
|
|
|
|
|
|
|
|
# Modern completion system
|
|
|
|
autoload -Uz compinit
|
|
|
|
compinit -d ~/.cache/zsh/ > /dev/null 2>&1
|
|
|
|
_comp_options+=(globdots) # include hidden files
|
|
|
|
|
|
|
|
source $HOME/.config/zsh/variables
|
|
|
|
source $HOME/.config/zsh/aliases
|
|
|
|
source $HOME/.config/zsh/zsh-autosuggestions.zsh
|
|
|
|
source $HOME/.config/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|
|
source $HOME/.config/zsh/gitstatus/gitstatus.prompt.zsh
|
2023-12-09 23:04:27 +01:00
|
|
|
export PATH=$PATH:/home/johannes/.spicetify
|