Skip to content

Instantly share code, notes, and snippets.

@ngtrvu
Last active August 20, 2024 15:32
Show Gist options
  • Save ngtrvu/f029adcd20a4af13826b7592e7a24086 to your computer and use it in GitHub Desktop.
Save ngtrvu/f029adcd20a4af13826b7592e7a24086 to your computer and use it in GitHub Desktop.
~/.zshrc
# vim
alias vim="nvim"
alias vi="nvim"
alias oldvim="vim"
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="robbyrussell"
# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)
source $ZSH/oh-my-zsh.sh
# Store all aliases
[ -f ~/.zsh/aliases.sh ] && source ~/.zsh/aliases.sh
# Store local secrets
[ -f ~/.zsh/secrets.sh ] && source ~/.zsh/secrets.sh
# Some useful scripts
[ -d ~/.zsh/scripts ] && export PATH="$HOME/.zsh/scripts:$PATH"
# FZF setup script
[ -f ~/.zsh/fzf.sh ] && source ~/.zsh/fzf.sh
# Some fancy stuff
[ -d ~/bin ] && export PATH="$HOME/bin:$PATH"
# Sytax highlighting: git clone [email protected]:zsh-users/zsh-syntax-highlighting.git ~/.zsh/
[ -f ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ] && source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
export TERM=xterm-256color
export EDITOR="code -w"
autoload -Uz compinit
compinit
[[ /usr/local/bin/kubectl ]] && source <(kubectl completion zsh) # add autocomplete permanently to your zsh shell
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/vu/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/vu/miniconda3/etc/profile.d/conda.sh" ]; then
. "/Users/vu/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/vu/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
# path for libs
export PATH=/opt/homebrew/Caskroom/redis-stack-server/6.2.4-v4/bin:$PATH
export PATH="/usr/local/bin:$PATH"
export PATH=$PATH:/Users/vu/.linkerd2/bin
# android settings
export ANDROID_SDK="$HOME/Library/Android/sdk"
export PATH="$HOME/Library/Android/sdk/platform-tools:$PATH"
export ANDROID_HOME="$HOME/Library/Android/sdk"
export ANDROID_SDK_ROOT="$HOME/Library/Android/sdk"
export ANDROID_AVD_HOME="$HOME/Library/.android/avd"
# python grpc
export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1
export GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1
export GRPC_PYTHON_LDFLAGS=" -framework CoreFoundation"
# openssl
export CFLAGS="-I/opt/homebrew/opt/[email protected]/include"
export LDFLAGS="-L/opt/homebrew/opt/[email protected]/lib"
# docker settings
export DOCKER_DEFAULT_PLATFORM=linux/amd64
# go settings
export PATH=$PATH:$(go env GOPATH)/bin
# java setup
# export JAVA_HOME=$(/usr/libexec/java_home)
# export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_321.jdk/Contents/Home
# unset JAVA_HOME
: '
jenv rehash 2>/dev/null
jenv refresh-plugins
jenv() {
typeset command
command="$1"
if [ "$#" -gt 0 ]; then
shift
fi
case "$command" in
enable-plugin|rehash|shell|shell-options)
eval `jenv "sh-$command" "$@"`;;
*)
command jenv "$command" "$@";;
esac
}
'
# rbenv
# eval "$(rbenv init -)"
#export PATH="$HOME/.rbenv/bin:$PATH"
# nodejs
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
# export NODE_OPTIONS=--openssl-legacy-provider
# pnpm
export PNPM_HOME="/Users/vu/Library/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment