Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
minamarkham committed Jan 24, 2023
1 parent 3c18f69 commit ce574bd
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions dot_zshrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env zsh

clear

export EDITOR=code
export VISUAL=$EDITOR
export DROPBOX=$HOME/Dropbox
Expand Down Expand Up @@ -31,29 +32,37 @@ autoload -Uz compinit && compinit
autoload bashcompinit && bashcompinit # load bashcompinit for some old bash completions

###############################################################################
# Load the shell dotfiles, and then some:
# INSTALL DEPS
###############################################################################
source $HOME/.zpm/zpm.zsh
source $ZSH_DIR/yonce/yonce.zsh
source $HOME/.path
source $HOME/.aliases
source $HOME/.functions
source $HOME/.company

if [[ ! -f ~/.zpm/zpm.zsh ]]; then
git clone --recursive https://github.com/zpm-zsh/zpm ~/.zpm
fi

if [[ ! -f ~/.company ]]; then
touch ~/.company
fi

###############################################################################
# PLUGINS && APPS
# PLUGINS && SUCH
###############################################################################

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

if [[ ! -f ~/.zpm/zpm.zsh ]]; then
git clone --recursive https://github.com/zpm-zsh/zpm ~/.zpm
fi

zpm load zpm-zsh/ls

###############################################################################
# Load the shell dotfiles, and then some:
###############################################################################
source $HOME/.zpm/zpm.zsh
source $ZSH_DIR/yonce/yonce.zsh
source $HOME/.path
source $HOME/.aliases
source $HOME/.functions
source $HOME/.company

###############################################################################
# AUTOMATICALLY ADDED / TO BE SORTED
###############################################################################

0 comments on commit ce574bd

Please sign in to comment.