.dotfiles/.zshrc

39 lines
535 B
Bash
Raw Normal View History

2019-09-30 21:04:13 +02:00
# _
# ____ ___ | |__
# |_ // __|| '_ \
# / / \__ \| | | |
# /___||___/|_| |_|
#~~~~~~~~~~~
# Oh-My-ZSH
#~~~~~~~~~~~
2019-10-07 18:24:10 +02:00
export ZSH="$HOME/.oh-my-zsh"
2019-09-30 21:04:13 +02:00
#~~~~~~~
# 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"
2019-10-02 19:01:32 +02:00
alias mutt='neomutt'