feat: cleanup some unneeded stuff from zshrc

This commit is contained in:
Matej Janezic 2023-05-31 00:21:21 +02:00
parent a278765314
commit e81d9d2d66
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 1 additions and 13 deletions

View File

@ -44,7 +44,7 @@ export LANG=en_US.UTF-8
export PATH="/opt/homebrew/sbin:$PATH" export PATH="/opt/homebrew/sbin:$PATH"
# pyenv # pyenv
export PYENV_ROOT="$HOME/.pyenv" export PYENV_ROOT="$XDG_DATA_HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)" eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)" eval "$(pyenv virtualenv-init -)"
@ -63,21 +63,9 @@ eval "$(ggman shellrc)"
# gpg # gpg
export GPG_TTY=$(tty) export GPG_TTY=$(tty)
# deno
export DENO_INSTALL="/Users/janezicmatej/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"
# dvm
export DVM_DIR="/Users/janezicmatej/.dvm"
export PATH="$DVM_DIR/bin:$PATH"
# editor # editor
export EDITOR=nvim export EDITOR=nvim
# gcloud sdk
source "$(brew --prefix)/share/google-cloud-sdk/path.zsh.inc"
source "$(brew --prefix)/share/google-cloud-sdk/completion.zsh.inc"
# custom functions and aliases # custom functions and aliases
source "$ZDOTDIR/aliases.zsh" source "$ZDOTDIR/aliases.zsh"
source "$ZDOTDIR/functions.zsh" source "$ZDOTDIR/functions.zsh"