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
| cat << EOF > $HOME/.vimrc-min | |
| syntax on | |
| set backspace=start,eol,indent | |
| set hidden | |
| set noswapfile | |
| set expandtab | |
| set tabstop=2 | |
| set softtabstop=2 | |
| set shiftwidth=2 |
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
| #!/usr/bin/env bash | |
| # curl -o ~/.osx https://gist.githubusercontent.com/ryanpcmcquen/b2e608311f286a4ab3e1/raw/.osx && bash ~/.osx | |
| ############################################################################### | |
| # General UI/UX # | |
| ############################################################################### | |
| # Disable smart dashes as they’re annoying when typing code. | |
| defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false |