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
| ### Aliases | |
| # Open specified files in Sublime Text | |
| # "s ." will open the current directory in Sublime | |
| alias s='open -a "Sublime Text"' | |
| # Open specified files in Atom | |
| # "a ." will open the current directory in Sublime | |
| alias a='atom .' |
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
| " Make Vim more useful | |
| set nocompatible | |
| " Use the OS clipboard by default (on versions compiled with `+clipboard`) | |
| " Set color scheme!¬ | |
| colorscheme Tomorrow-Night | |
| set clipboard=unnamed | |
| " Disable mode | |
| set noshowmode | |
| " Enhance command-line completion | |
| set wildmenu |
NewerOlder