dotfiles/crates/10-zsh/files/.zshrc

23 lines
484 B
Bash
Raw Permalink Normal View History

2023-09-01 03:34:16 +02:00
export GPG_TTY=$(tty)
# paths
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
# ZSH
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="afowler"
plugins=(git docker docker-compose node zsh-autosuggestions zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
# ALIASES
alias open="xdg-open"
alias nobeep="sudo modprobe -r pcspkr"
alias s="title $HOST && cmatrix -rs && clear"
alias q="exit"
# COSMETICS
2023-09-08 12:30:53 +02:00
#fastfetch
2023-09-01 03:34:16 +02:00
export PATH="${PATH}:/home/${USER}/.local/bin"