Skip to content

Commit

Permalink
zshrc: add mise remove nvm
Browse files Browse the repository at this point in the history
  • Loading branch information
Ooscaar committed Aug 11, 2024
1 parent 4e8bd54 commit f6fd1c6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,6 @@ alias tmuxconfg="vim ~/.tmux.conf"
alias gits="git status"
alias gitp="git push"

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

# Common aliases
alias cat="bat"
alias caddy="caddy_linux_amd64_custom"
Expand All @@ -138,7 +134,9 @@ alias caddy="caddy_linux_amd64_custom"
# fi

# Set up secrets
source ~/.secrets.zsh
if [ -f ~/.secrets.zsh ]; then
source ~/.secrets.zsh
fi

# Set up starship
eval "$(starship init zsh)"
Expand All @@ -152,3 +150,6 @@ complete -o nospace -C /usr/bin/terraform terraform
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"

# Mise
eval "$(/usr/bin/mise activate zsh)"

0 comments on commit f6fd1c6

Please sign in to comment.