Last active
June 3, 2019 11:30
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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