Skip to content

Instantly share code, notes, and snippets.

@4aficiona2
Last active June 3, 2019 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 4aficiona2/dd38349b6949e661cd7643e8508a571a to your computer and use it in GitHub Desktop.
Save 4aficiona2/dd38349b6949e661cd7643e8508a571a to your computer and use it in GitHub Desktop.
needs to be manually applied, hasn't worked to be applied in .laptop.local script
#!/bin/sh
#add_or_update_asdf_plugin "elixir" "https://github.com/asdf-vm/asdf-elixir.git"
#add_or_update_asdf_plugin "elm" "https://github.com/vic/asdf-elm.git"
# PHP asdf version seems to be shaky or only partially support, double check first before installing it
#add_or_update_asdf_plugin "php" "https://github.com/odarriba/asdf-php.git"
# Install oh-my-zsh for zsh @see https://gist.github.com/kevin-smets/8568070#oh-my-zsh
fancy_echo "Install oh-my-zsh ..."
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Install Powerlevel9k theme
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
#fix iterm2 / zsh issues @see https://github.com/GabLeRoux/iterm2-macos-dynamic-profile
cp ~/dotfiles-local/iterm2/fix-iterm2-keys-profile.json ~/Library/Application\ Support/iTerm2/DynamicProfiles
# manually created iTerm2 profile
# added font 'Hack Regular Nerd Font Complete' for ASCII and NON-ASCII font
fancy_echo "Cleaning up old Homebrew formulae ..."
brew cleanup
brew cask cleanup
if [ -r "$HOME/.rcrc" ]; then
fancy_echo "Updating dotfiles ..."
rcup
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment