Skip to content

Instantly share code, notes, and snippets.

@colin-kiegel
Created October 2, 2016 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save colin-kiegel/15f14c2cd4b85c981dece56081c94be2 to your computer and use it in GitHub Desktop.
Save colin-kiegel/15f14c2cd4b85c981dece56081c94be2 to your computer and use it in GitHub Desktop.
Atom-Rust IDE
# Run this in your shell to install a set of atom-plugins
# for working with rust projects and git
# Rust essentials
apm install language-rust racer linter linter-rust build build-cargo cargo-test-runner rust-api-docs-helper
# Other
apm install keyboard-localization autoupdate-packages project-manager atom-terminal minimap docblockr theme-switcher
# Git
apm install minimap-git-diff line-diff-details git-control git-history git-log git-plus merge-conflicts
'.platform-linux atom-workspace, .platform-win32 atom-workspace':
'ctrl-alt-y': 'build:select-active-target'
'ctrl-alt-a': 'build:error-match-first'
'alt-ctrl-x': 'linter:next-error'
'atom-text-editor:not([mini])':
'f1': 'racer:find-definition'
'alt-ctrl': 'linter:set-bubble-transparent'
'ctrl-6': 'docblockr:decorate'
'ctrl-shift-space': 'editor:toggle-line-comments'
'atom-text-editor':
'alt': 'native!'
'shift-f11': 'theme-switcher:switch'
'.platform-linux':
'ctrl-alt-p': 'project-manager:list-projects'
'atom-workspace':
'ctrl-alt-o': 'git-control:toggle'
@colin-kiegel
Copy link
Author

This is a combination of packages and keybindings I like to use for working with rust. If you are searching for some Rust IDE experience, this should be a good starting point. You can disable or uninstall packages at any time, if they don't suit you. :-)

PS: The keymap.cson needs to placed / merged here ~/.atom/keymap.cson (linux).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment