From 9ecffd949a3633ef3462ffbfe78d4f0fb7e09b93 Mon Sep 17 00:00:00 2001 From: Jim Richter Date: Wed, 14 Jul 2021 19:13:16 +0200 Subject: [PATCH] chore: cleanup .zshrc, remove old loads --- configs/.zshrc | 40 +++++++--------------------------------- 1 file changed, 7 insertions(+), 33 deletions(-) diff --git a/configs/.zshrc b/configs/.zshrc index 16e8a02..59754d5 100644 --- a/configs/.zshrc +++ b/configs/.zshrc @@ -1,3 +1,6 @@ +# Update Repo +source $HOME/.dotfiles/configs/zsh/update-repo.zsh + # p10k if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" @@ -7,6 +10,7 @@ ZSH_THEME="powerlevel10k/powerlevel10k" plugins=( git asdf + docker zsh-autosuggestions ) @@ -25,36 +29,15 @@ source $HOME/.dotfiles/configs/zsh/functions.zsh source $HOME/.dotfiles/configs/zsh/aliases.sh ## LOADING PROGRAMS -export PATH="$PATH:$HOME/.yarn/bin" -export PATH="$PATH:$HOME/.local/bin" export PATH="$PATH:$HOME/bin" -export PATH="$PATH:$HOME/go/bin" - -export PATH="$PATH:/mnt/c/users/jim/AppData/Local/Programs/Microsoft VS Code Insiders/bin"; -export PATH="$PATH:/mnt/c/users/jim/AppData/Local/Programs/Microsoft VS Code/bin"; - -export DENO_INSTALL="/home/jim/.deno" -export PATH="$PATH:$DENO_INSTALL/bin" ## Setup VIM export EDITOR="nvim" -## GO STUFF -export PATH=$PATH:/usr/local/go/bin - +# Automatically load direnv if found [[ -s $(which direnv) ]] && eval "$(direnv hook zsh)" -#Java version manager -#export SDKMAN_DIR="$HOME/.sdkman" -#[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh" - -# Go version manager -#[[ -s "$HOME/.gvm/scripts/gvm" ]] && source "$HOME/.gvm/scripts/gvm" - -# Node Version manager -#export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" -#[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" - +# Load DOTNet if found if [ -d $HOME/.dotnet ]; then export DOTNET_ROOT=$HOME/.dotnet; export PATH=$PATH:$HOME/.dotnet; @@ -67,17 +50,8 @@ if [ -s "$HOME/.pyenv" ]; then eval "$(pyenv init -)" fi -# For wsl stay in the current dir when splitting panes? -export PROMPT_COMMAND='printf "\e]9;9;%s\e\\" "$(wslpath -m "$PWD")"' - -source $HOME/.dotfiles/configs/zsh/update-repo.zsh - -# The next line updates PATH for the Google Cloud SDK. -#if [ -f '/home/coder/downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/home/coder/downloads/google-cloud-sdk/path.zsh.inc'; fi - -# The next line enables shell command completion for gcloud. -#if [ -f '/home/coder/downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/coder/downloads/google-cloud-sdk/completion.zsh.inc'; fi +#Load ASDF Version manager if found if [ -s "$HOME/.asdf" ]; then . $HOME/.asdf/asdf.sh . $HOME/.asdf/completions/asdf.bash