Skip to content

Instantly share code, notes, and snippets.

@ahnbizcad
Last active September 11, 2018 02:33
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 ahnbizcad/f0413cdfff8d71947a9b020adbbe6bc7 to your computer and use it in GitHub Desktop.
Save ahnbizcad/f0413cdfff8d71947a9b020adbbe6bc7 to your computer and use it in GitHub Desktop.
Atom Configuration Steps

Setup steps to achieve my preferred Atom configuration

Atom Settings

Have positional tab cycling

  • Go to File > keymap...
  • Paste:
  'body':
  'ctrl-tab': 'pane:show-next-item'
  'ctrl-tab ^ctrl': 'unset!'
  'ctrl-shift-tab': 'pane:show-previous-item'
  'ctrl-shift-tab ^ctrl': 'unset!'

My preferred mapping.

disable autoflow:reflow-selection

disable closing window ctrl-shift-w close tab (safer)

ctrl e - is select line ctrl q - is delete line

'body':
  'ctrl-tab ^ctrl': 'unset!'
  'ctrl-tab': 'pane:show-next-item'

  'ctrl-shift-tab ^ctrl': 'unset!'
  'ctrl-shift-tab': 'pane:show-previous-item'


'body, 
.platform-win32 .editor, 
.platform-linux .editor, 
.atom-workspace, 
atom-text-editor,
atom-text-editor:not([mini])': 
'body, 
.platform-win32 .editor, 
.platform-linux .editor, 
.atom-workspace, 
atom-text-editor,
atom-text-editor:not([mini])': 
  'ctrl-shift-q': 'unset!'
  
  'ctrl-w': 'unset!'
  'ctrl-shift-w': 'core:close'
  
  'ctrl-q': 'editor:delete-line'
  'ctrl-e': 'editor:select-line'
	

Packages

*** remote-ftp

Themes

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