Skip to content

Instantly share code, notes, and snippets.

@jordanbtucker
Last active March 23, 2016 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jordanbtucker/7124eac0007d3853da62 to your computer and use it in GitHub Desktop.
Save jordanbtucker/7124eac0007d3853da62 to your computer and use it in GitHub Desktop.
Atom configuration
apm rm autocomplete-paths
git clone https://github.com/jordanbtucker/autocomplete-paths
cd autocomplete-paths
apm install
apm ln
#"*"
# core:
customFileTypes:
"source.js": [
"json5"
]
# Set to 125% zoom for high dpi screens
require('web-frame').setZoomFactor(1.25)
# 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'
apm install editorconfig emmet autoclose-html atom-beautify go-plus language-vbscript language-batchfile language-powershell language-htaccess
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