chore(zsh): update plugins and change some other stuff
This commit is contained in:
parent
fbb7032478
commit
89c4132fb4
7 changed files with 14 additions and 29 deletions
|
@ -4,15 +4,20 @@ if [[ ! $(tty) =~ ^/dev/tty[0-9]*$ ]]; then
|
|||
if [[ -o INTERACTIVE ]]; then
|
||||
exec "${SHELL}"
|
||||
fi
|
||||
}
|
||||
}
|
||||
fi
|
||||
|
||||
export XDG_CONFIG_HOME="${HOME}/.config"
|
||||
export XDG_CACHE_HOME="${HOME}/.cache"
|
||||
export XDG_DATA_HOME="${HOME}/.local/share"
|
||||
export XDG_STATE_HOME="${HOME}/.local/state"
|
||||
export XDG_RUNTIME_DIR=/tmp
|
||||
|
||||
# Add exports
|
||||
if [[ $(uname) == "Darwin" ]]; then
|
||||
#ONLY MACOS
|
||||
export JAVA_HOME="/opt/homebrew/opt/openjdk@17/libexec/openjdk.jdk/Contents/Home"
|
||||
export JAVA_HOME=$(/usr/libexec/java_home)
|
||||
export PATH="/opt/homebrew/bin:$PATH"
|
||||
export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"
|
||||
export PATH="/opt/homebrew/opt/texlive/bin:$PATH"
|
||||
export GEM_HOME=$HOME/.gem
|
||||
export PATH=$PATH:$GEM_HOME/bin
|
||||
|
@ -31,19 +36,10 @@ export PATH="$HOME/.cargo/bin:$PATH"
|
|||
export PATH="$HOME/.ghcup/bin:$PATH"
|
||||
export PATH="$HOME/.miniforge3/bin:$PATH"
|
||||
export PATH="$HOME/.cabal/bin:$PATH"
|
||||
export PATH="$XDG_CONFIG_HOME/emacs/bin:$PATH"
|
||||
|
||||
export GOPATH="$HOME/go"
|
||||
export GOBIN="$GOPATH/bin"
|
||||
|
||||
#Android stuff
|
||||
export ANDROID_HOME=~/android/sdk
|
||||
export ANDROID_TOOLS_PATHS=$ANDROID_HOME/cmdline-tools/latest/bin:
|
||||
export PATH=$ANDROID_TOOLS_PATHS:$PATH:
|
||||
|
||||
export XDG_CONFIG_HOME="${HOME}/.config"
|
||||
export XDG_CACHE_HOME="${HOME}/.cache"
|
||||
export XDG_DATA_HOME="${HOME}/.local/share"
|
||||
export XDG_STATE_HOME="${HOME}/.local/state"
|
||||
export XDG_RUNTIME_DIR=/tmp
|
||||
|
||||
. "$HOME/.cargo/env"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue