Skip to content

Instantly share code, notes, and snippets.

@tabrez
Last active April 12, 2022 17:04
Show Gist options
  • Save tabrez/257451cebb82d6436fadf2acadc11602 to your computer and use it in GitHub Desktop.
Save tabrez/257451cebb82d6436fadf2acadc11602 to your computer and use it in GitHub Desktop.
Minimal zsh configuration
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
export TERM="xterm-256color"
fpath+=~/.zsh/pure
autoload -U promptinit; promptinit
autoload -U compinit; compinit
prompt pure
source ~/.zsh/antigen.zsh
antigen bundle git
antigen bundle common-aliases
antigen bundle supercrabtree/k
antigen bundle agkozak/zsh-z
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle MichaelAquilina/zsh-you-should-use
export YSU_MESSAGE_POSITION="after"
export YSU_MODE=ALL
antigen apply
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
alias rm="rm -i"
alias mv="mv -i"
alias cp="cp -i"
alias v="vim"
alias md="mkdir -p"
export PATH="$PATH:/snap/bin:$HOME/.local/bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment