Last active
April 12, 2022 17:04
-
-
Save tabrez/257451cebb82d6436fadf2acadc11602 to your computer and use it in GitHub Desktop.
Minimal zsh configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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