.dotfiles/.zshrc

41 lines
519 B
Bash
Raw Permalink 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
#~~~~~~~
2019-10-19 14:45:17 +02:00
ZSH_THEME='bira'
2019-09-30 21:04:13 +02:00
#~~~~~~~~~
# Plugins
#~~~~~~~~~
plugins=(
zsh-syntax-highlighting
vi-mode
command-not-found
2019-10-19 14:45:17 +02:00
git-open
git
2019-09-30 21:04:13 +02:00
)
source $ZSH/oh-my-zsh.sh
#~~~~~~~~~
# Aliases
#~~~~~~~~~
alias vi="nvim"
2019-10-18 20:17:16 +02:00
alias suvi='sudo -E nvim'
2019-09-30 21:04:13 +02:00
alias ncm="ncmpcpp"
2019-10-02 19:01:32 +02:00
alias mutt='neomutt'
2019-10-18 20:17:16 +02:00
#yay
alias owo="yay"
alias up='yay -Syyu'