Skip to content

Instantly share code, notes, and snippets.

@pwang2
pwang2 / .zshrc_shared
Last active August 9, 2024 17:58
.zshrc_shared
ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="robbyrussell"
KEYTIMEOUT=1
DISABLE_AUTO_TITLE=true
DISABLE_MAGIC_FUNCTIONS=true
IS_MACOS=$(uname -s | grep -i "darwin" | wc -l)
if [ $IS_MACOS -eq 1 ]; then
BREW_PREFIX="/usr/local"
else
@pwang2
pwang2 / init-linux.sh
Last active June 10, 2024 18:01
linux init
if [ $UID -eq 0 ]; then
echo "*****************************************************"
echo "$(tput setaf 1)DO NOT RUN AS sudo $(tput sgr 0)"
echo "*****************************************************"
exit 1
fi
ZPLUGINS=$HOME/.oh-my-zsh/custom/plugins
BREW=/home/linuxbrew/.linuxbrew