1
1
Fork 0
dotfiles/.zshrc
2026-04-02 20:56:34 -06:00

18 lines
321 B
Bash

export EDITOR='nvim'
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="robbyrussell"
zstyle ':omz:update' mode reminder # just remind me to update when it's time
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
plugins=(
git
mise
zoxide
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh
eval "$(zoxide init zsh)"