Go to file
2019-03-01 14:05:28 +01:00
private_dot_config/Code/User backup VScode and iTerm2 prefs 2019-03-01 12:47:37 +01:00
private_dot_ssh add README and comments 2019-03-01 09:47:48 +01:00
Brewfile automate font installation 2019-03-01 14:03:11 +01:00
com.googlecode.iterm2.plist backup VScode and iTerm2 prefs 2019-03-01 12:47:37 +01:00
dot_bash_profile init dotfiles 2019-03-01 09:17:42 +01:00
dot_gitconfig init dotfiles 2019-03-01 09:17:42 +01:00
dot_vimrc add .vimrc 2019-03-01 11:14:29 +01:00
dot_zsh_aliases helpful aliases 2019-03-01 13:34:54 +01:00
dot_zsh_functions add shortcut to asana 2019-03-01 09:51:37 +01:00
dot_zshrc give priority to chezmoi over mackup 2019-03-01 12:59:54 +01:00
dot_zshrc.pre-oh-my-zsh init dotfiles 2019-03-01 09:17:42 +01:00
README.md remove obsolete action in doc 2019-03-01 14:05:28 +01:00
Solarized Dark - Patched.itermcolors.txt iTerm2 profile & move apps to Brew 2019-03-01 10:16:59 +01:00
symlink_dot_mackup.cfg add CLI utilities 2019-03-01 11:42:04 +01:00

Use SDKMan to install development tools

curl -s "https://get.sdkman.io" | bash
sdk install java
sdk install gradle
sdk install java 8.0.202-zulu

Install Docker Desktop for Mac

docker_app=$(find /Applications/ \
                  -name "Docker.app" -maxdepth 1 -mindepth 1 -type d)
if [ -z "$docker_app" ]; then
   curl -o ~/Downloads/Docker.dmg -sL https://download.docker.com/mac/stable/Docker.dmg
   hdiutil verify ~/Downloads/Docker.dmg
   hdiutil attach ~/Downloads/Docker.dmg -nobrowse
   cp -R /Volumes/Docker/Docker.app /Applications/
   hdiutil detach /Volumes/Docker
   rm ~/Downloads/Docker.dmg
   sudo /Applications/Docker.app/Contents/MacOS/Docker --quit-after-install --unattended
else
   echo "Docker for Mac is already installed."
fi

Install dependencies (apps, fonts, ...) with Brew

brew bundle

Install Oh My Zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9
git clone https://github.com/AlexisBRENON/oh-my-zsh-reminder ~/.oh-my-zsh/custom/plugins/reminder

OSX Defaults

defaults write http://com.apple .screencapture location ~/Downloads
#defaults write com.apple.PowerChime ChimeOnNoHardware -bool true # still KO after closing lid
#killall PowerChime

Install NPM dependencies

npm install -g jira-node-cli