Last active
August 29, 2015 14:01
-
-
Save benkaiser/4afbbb2ccc380a04c4fd to your computer and use it in GitHub Desktop.
Atom Settings
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
| 'editor': | |
| 'fontSize': 16 | |
| 'showInvisibles': true | |
| 'showIndentGuide': true | |
| 'invisibles': | |
| 'cr': 'EW! CR!' | |
| 'tab': 'TAB?' | |
| 'eol': '' | |
| 'core': | |
| 'themes': [ | |
| 'atom-dark-ui' | |
| 'monokai' | |
| ] |
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
| '.editor': | |
| 'ctrl-l': 'editor:select-line' | |
| # multiple selection | |
| 'ctrl-d': 'find-and-replace:select-next' | |
| # ctrl arrow key movement | |
| 'ctrl-left': 'editor:move-to-beginning-of-word' | |
| 'ctrl-right': 'editor:move-to-end-of-word' | |
| 'ctrl-shift-left': 'editor:select-to-beginning-of-word' | |
| 'ctrl-shift-right': 'editor:select-to-end-of-word' | |
| 'ctrl-4': 'editor:move-to-end-of-screen-line' | |
| 'ctrl-$': 'editor:select-to-end-of-line' | |
| 'body': | |
| 'ctrl-shift-z': 'core:redo' | |
| '.autocomplete-plus input.hidden-input': | |
| 'enter': 'autocomplete-plus:confirm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment