Last active
April 29, 2019 10:41
-
-
Save robspassky/9f323e6a11ddd1b1d73766851c7b8856 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# neovim | |
# tmux | |
# zsh | |
# git | |
# sdkman - java, gradle, maven, kotlin | |
# | |
sudo apt update | |
sudo apt install build-essential curl file git tmux zsh unzip zip ca-certificates-java | |
sudo apt upgrade | |
sudo update-ca-certificates --fresh | |
git config --global user.email "[email protected]" | |
git config --global user.name "Rob Cabacungan" | |
# sdkman (jvm stuff) | |
curl -s "https://get.sdkman.io" | bash | |
source ~/.sdkman/bin/sdkman-init.sh | |
sdk install java 12.0.1-sapmchn | |
sdk install maven | |
sdk install gradle | |
# brew (neovim, python) | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)" | |
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv) | |
brew install gcc | |
brew install neovim | |
# nvm | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment