Atom オートインデントのショートカットキーを設定する

AtomのFileにあるKeymapを選択します。

keymap.csonに以下のコードを入力します。
Windows

'atom-text-editor':
'ctrl-alt-l': 'editor:auto-indent'
Mac
'atom-text-editor':
'cmd-alt-l': 'editor:auto-indent'
f:id:mu_mu_mu:20160424220711p:plain

ショートカットキーが設定されたか確認しましょう。
f:id:mu_mu_mu:20160424220557p:plain

これで完了です。

・参考URL
Auto indent code in Atom editor - Stack Overflow
A shortcut for formatting the file content or a portion of code - features - Atom Discussion