Last active
June 13, 2019 14:39
-
-
Save Paalon/127ce940cf99be54e6b1e49bbb1691d9 to your computer and use it in GitHub Desktop.
macOS setup script.
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
| # Command Line Interface | |
| xcode-select --install | |
| # Homebrew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Homebrew Cask | |
| brew tap caskroom/cask | |
| # TeX environment | |
| brew install ghostscript # ghostscript | |
| brew cask install mactex-no-gui # MacTeX without ghostscript | |
| apm install language-latex | |
| # Enable luajitlatex | |
| curl -LsSf https://raw.githubusercontent.com/tats-u/enable-luajitlatex/master/enable-luajitlatex.sh | sudo PATH="$PATH" sh | |
| # Atom | |
| brew cask install atom | |
| apm disable welcome # disable welcome page | |
| apm install file-icons | |
| apm install build | |
| # Fish shell | |
| brew install fish | |
| # Julia | |
| brew cask install julia | |
| apm install uber-juno | |
| # Karabiner-Elements | |
| brew cask install karabiner-elements | |
| # direnv | |
| brew install direnv | |
| # Other tools | |
| brew install micro | |
| brew install wget |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment