Created
October 2, 2016 11:12
-
-
Save colin-kiegel/15f14c2cd4b85c981dece56081c94be2 to your computer and use it in GitHub Desktop.
Atom-Rust IDE
This file contains 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
# 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 |
This file contains 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
'.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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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).