Last active
March 23, 2016 18:42
-
-
Save jordanbtucker/7124eac0007d3853da62 to your computer and use it in GitHub Desktop.
Atom configuration
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
apm rm autocomplete-paths | |
git clone https://github.com/jordanbtucker/autocomplete-paths | |
cd autocomplete-paths | |
apm install | |
apm ln |
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
#"*" | |
# core: | |
customFileTypes: | |
"source.js": [ | |
"json5" | |
] |
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
# Set to 125% zoom for high dpi screens | |
require('web-frame').setZoomFactor(1.25) |
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
# Stop emmet from hijacking ctrl-, from settings | |
'atom-text-editor:not([mini])': | |
'ctrl-,': 'application:show-settings' | |
# Stop emmet from hijacking tab from snippets and autocomplete | |
'atom-text-editor.autocomplete-active:not([mini])': | |
'tab': 'autocomplete-plus:confirm' | |
# Stop emmet from hijacking tab from snippet tab stops | |
'atom-text-editor[data-grammar="text html basic"]:not([mini]), atom-text-editor[data-grammar~="jade"]:not([mini]), atom-text-editor[data-grammar~="css"]:not([mini]), atom-text-editor[data-grammar~="sass"]:not([mini])': | |
'tab': 'snippets:next-tab-stop' | |
# Stop atom from hijacking ctrl-e from emmet | |
'.platform-win32 atom-text-editor:not([mini]), .platform-linux atom-text-editor:not([mini])': | |
'ctrl-e': 'emmet:expand-abbreviation' | |
# Use tree-view's add file | |
'body': | |
'ctrl-n': 'tree-view:add-file' |
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
apm install editorconfig emmet autoclose-html atom-beautify go-plus language-vbscript language-batchfile language-powershell language-htaccess |
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
apm install editorconfig emmet autoclose-html atom-beautify go-plus language-vbscript language-batchfile language-powershell language-htaccess |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment