.dotfiles/.zshrc
2019-10-07 18:24:10 +02:00

39 lines
535 B
Bash

# _
# ____ ___ | |__
# |_ // __|| '_ \
# / / \__ \| | | |
# /___||___/|_| |_|
#~~~~~~~~~~~
# Oh-My-ZSH
#~~~~~~~~~~~
export ZSH="$HOME/.oh-my-zsh"
#~~~~~~~
# Theme
#~~~~~~~
ZSH_THEME="bira"
#~~~~~~~~~
# Plugins
#~~~~~~~~~
plugins=(
git
zsh-syntax-highlighting
vi-mode
command-not-found
)
source $ZSH/oh-my-zsh.sh
#~~~~~~~~~
# Aliases
#~~~~~~~~~
alias vi="nvim"
alias zshconfig="vi ~/.zshrc"
alias ohmyzsh="vi ~/.oh-my-zsh"
alias uwu="sudo"
alias owo="yay"
alias ncm="ncmpcpp"
alias mutt='neomutt'