2019-03-01 08:47:48 +00: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
|
|
|
|
```
|
|
|
|
|
2019-03-01 09:24:53 +00:00
|
|
|
### Install Docker Desktop for Mac
|
|
|
|
```
|
2019-03-01 13:13:21 +00:00
|
|
|
~/.scripts/bootstrap.sh
|
2019-03-01 09:24:53 +00:00
|
|
|
```
|
2019-03-01 08:47:48 +00:00
|
|
|
|
2019-03-01 13:03:11 +00:00
|
|
|
### Install dependencies (apps, fonts, ...) with Brew
|
2019-03-01 08:47:48 +00:00
|
|
|
`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
|
2019-03-01 09:53:42 +00:00
|
|
|
git clone https://github.com/AlexisBRENON/oh-my-zsh-reminder ~/.oh-my-zsh/custom/plugins/reminder
|
2019-03-01 08:47:48 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### OSX Defaults
|
|
|
|
```
|
2019-03-01 09:24:53 +00:00
|
|
|
defaults write http://com.apple .screencapture location ~/Downloads
|
2019-03-01 08:47:48 +00:00
|
|
|
#defaults write com.apple.PowerChime ChimeOnNoHardware -bool true # still KO after closing lid
|
|
|
|
#killall PowerChime
|
|
|
|
```
|
|
|
|
|
|
|
|
### Install NPM dependencies
|
|
|
|
`npm install -g jira-node-cli`
|
2019-04-09 11:32:57 +00:00
|
|
|
|
|
|
|
### Install pip
|
|
|
|
```
|
|
|
|
sudo easy_install pip
|
|
|
|
sudo pip install --upgrade pip
|
|
|
|
sudo pip3 install --upgrade pip
|
|
|
|
```
|
|
|
|
|
|
|
|
### Install AWS-CLI
|
2019-04-09 11:47:54 +00:00
|
|
|
```
|
|
|
|
pip3 install boto3
|
|
|
|
pip3 install awscli
|
|
|
|
```
|