# Created by newuser for 5.8 autoload -Uz compinit promptinit # Completion compinit zstyle ':completion::complete:*' gain-privileges 1 zstyle ':completion:*' menu select # Prompt if [ "$TERM" != "linux" ]; then fpath=(~/.config/zsh/ $fpath) autoload -Uz knight knight else PROMPT='%n @ %m %~ %# ' fi; STATUS="Hallo" # Keybindings bindkey -v # Aliases alias ls='ls --color=auto' alias la='ls -a --color=auto' alias ll='ls -l --color=auto -h' setopt COMPLETE_ALIASES # History export HISTSIZE=1000 export SAVEHIST=1000 export HISTFILE=~/.zsh_history setopt INC_APPEND_HISTORY setopt HIST_IGNORE_DUPS # Syntax Highlight source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.profile # Auto CD setopt AUTO_CD export HISTFILE="$XDG_CACHE_HOME"/zsh/history