dot_files/.zshrc

32 lines
667 B
Bash
Raw Normal View History

2024-03-18 10:51:30 +00:00
## OMZ CONFIG
export ZSH="$HOME/.oh-my-zsh"
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
COMPLETION_WAITING_DOTS="true"
HIST_STAMPS="mm/dd/yyyy"
plugins=(git zsh-syntax-highlighting fast-syntax-highlighting rust)
ZSH_THEME="crcandy"
zstyle ':omz:update' mode auto
source $ZSH/oh-my-zsh.sh
# Manual config
export LANG=en_US.UTF-8
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='vim'
else
export EDITOR='mvim'
fi
# Aliases
alias vim="nvim"
alias yt-dlp="yt-dlp -o \"%(title)s.%(ext)s\""
# Aditional Paths
export PATH="$PATH:/usr/lib/ruby/gems/3.0.0/gems"