Created
January 13, 2015 04:58
-
-
Save focusaurus/68dab5ae9bc44ee4251e to your computer and use it in GitHub Desktop.
Atom text editor setup 2015-01-12
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
atom-beautify | |
atom-color-highlight | |
autoclose-html | |
autocomplete-plus | |
git-blame | |
git-plus | |
jsdoc | |
jsformat | |
language-docker | |
language-dockerfile | |
language-jade | |
language-stylus | |
linter | |
linter-eslint | |
linter-jsonlint | |
linter-pyflakes | |
linter-python-pep8 | |
mark | |
open-last-project | |
sort-lines | |
toggle-quotes | |
tree-ignore | |
vertical-align |
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
'*': | |
'welcome': | |
'showOnStartup': false | |
'editor': | |
'fontFamily': 'Inconsolata' | |
'fontSize': 14 | |
'showInvisibles': true | |
'showIndentGuide': true | |
'autoIndentOnPaste': false | |
'softWrapAtPreferredLineLength': true | |
'invisibles': {} | |
'core': | |
'ignoredNames': [ | |
'.git' | |
'.svn' | |
'.DS_Store' | |
'*.pyc' | |
] | |
'disabledPackages': [ | |
'dev-live-reload' | |
'exception-reporting' | |
'feedback' | |
'metrics' | |
'language-sass' | |
'autocomplete' | |
'language-haml' | |
] | |
'themes': [ | |
'atom-light-ui' | |
'atom-light-syntax' | |
] | |
'audioBeep': false | |
'autosave': | |
'enabled': true | |
'linter-jshint': | |
'jshintExecutablePath': '/Users/plyons/.atom/packages/linter-jshint/node_modules/.bin/jshint' | |
'autocomplete': | |
'includeCompletionsFromAllBuffers': true | |
'git-diff': | |
'showIconsInEditorGutter': true | |
'find-and-replace': | |
'openProjectFindResultsInRightPane': true | |
'bracket-matcher': | |
'autocompleteBrackets': false | |
'autocomplete-plus': | |
'autoActivationDelay': 250 | |
'includeCompletionsFromAllBuffers': true | |
'linter-python-pep8': | |
'pep8DirToExecutable': '/Users/plyons/.virtualenvs/pep8/bin' | |
'jsformat': | |
'format_on_save': false | |
'atom-beautify': | |
'_analyticsUserId': '2be96018-a412-4a5c-872a-935c8b056d7a' | |
'tree-view': | |
'hideVcsIgnoredFiles': true | |
'hideIgnoredNames': true | |
'linter': | |
'lintOnChange': false | |
'lintOnEditorFocus': false | |
'showHighlighting': false | |
'linter-pyflakes': | |
'pyflakesExecutablePath': '/Users/plyons/.virtualenvs/pep8/bin/pyflakes' | |
'whitespace': | |
'ignoreWhitespaceOnCurrentLine': false | |
'tabs': | |
'tabScrolling': true | |
'tree-view-open-files': | |
'maxHeight': 0 | |
'tree-ignore': {} | |
'autoclose-html': {} |
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
# Your keymap | |
# | |
# Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors | |
# to apply styles to elements, Atom keymaps use selectors to associate | |
# keystrokes with events in specific contexts. | |
# | |
# You can create a new keybinding in this file by typing "key" and then hitting | |
# tab. | |
# | |
# Here's an example taken from Atom's built-in keymap: | |
# | |
# '.editor': | |
# 'enter': 'editor:newline' | |
# | |
# 'body': | |
# 'ctrl-P': 'core:move-up' | |
# 'ctrl-p': 'core:move-down' | |
# | |
'.platform-darwin, .platform-darwin .command-palette .editor': | |
'cmd-.': 'command-palette:toggle' | |
'cmd-o': 'fuzzy-finder:toggle-file-finder' | |
'.platform-darwin .editor': | |
'cmd-d': 'editor:delete-line' | |
'cmd-down': 'editor:move-line-down' | |
'cmd-enter': 'editor:newline-below' | |
'cmd-up': 'editor:move-line-up' | |
'ctrl-. f b': 'core:move-to-top' | |
'ctrl-. f e': 'core:move-to-bottom' | |
'ctrl-. s o': 'sort-lines:case-insensitive-sort' | |
'ctrl-. u f': 'editor:unfold-all' | |
'shift-enter': 'editor:newline-above' | |
'ctrl-. r w': 'autoflow:reflow-selection' | |
'.workspace .editor:not(.mini)': | |
'cmd-e': 'find-and-replace:select-next' | |
'ctrl-. c o': 'editor:toggle-line-comments' | |
'ctrl-. f f': 'editor:fold-at-indent-level-4' | |
'ctrl-. f h': 'editor:fold-at-indent-level-3' | |
'ctrl-. f o': 'editor:fold-at-indent-level-1' | |
'ctrl-. f t': 'editor:fold-at-indent-level-2' | |
'ctrl-. s a': 'editor:add-selection-above' | |
'ctrl-. s b': 'editor:add-selection-below' | |
'ctrl-. b e': 'beautify:beautify-editor' | |
'.workspace': | |
'ctrl-. m d': 'markdown-preview:toggle' | |
'ctrl-. t q': 'toggle-quotes:toggle' | |
'ctrl-. t w': 'editor:toggle-soft-wrap' | |
'body': | |
'ctrl-. c a': 'pane:close-other-items' | |
'ctrl-. c p': 'pane:close' | |
'ctrl-. s d': 'pane:split-down' | |
'ctrl-. s r': 'pane:split-right' | |
'.editor': | |
'ctrl-. e r c': 'eslint:reload-config' | |
'ctrl-. g b': 'git-blame:toggle' | |
'ctrl-. l c': 'editor:lower-case' | |
'ctrl-. l i': 'eslint:lint' | |
'ctrl-. r c': 'run-command:re-run-last-command' | |
'ctrl-. r u n': 'run-command:run' | |
'ctrl-. u c': 'editor:upper-case' | |
'.workspace .editor': | |
'ctrl-. c m': 'mark:clear-mark' | |
'ctrl-. g m': 'mark:goto-mark' | |
'ctrl-. s m': 'mark:select-to-mark' | |
'ctrl-. t m': 'mark:toggle' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment