Atom 配置

1. atom 修改快捷键 ( 在 setting > keybindings > your keymap file 中

#  cmd 对应 win 键
'atom-text-editor':
    # 新建行
    'shift-enter': 'editor:newline-below'

    # 上 下 左 右
    'ctrl-n':'core:move-down'
    'ctrl-p':'core:move-up'
    'ctrl-f':'core:move-right'
    'ctrl-b':'core:move-left'
    'ctrl-cmd-b': 'editor:move-to-beginning-of-word'
    'ctrl-cmd-f': 'editor:move-to-end-of-word'

    # 跳到行头&尾
    'ctrl-e': 'editor:move-to-end-of-screen-line'
    'ctrl-a': 'editor:move-to-first-character-of-line'

    # 删除单词
    'ctrl-cmd-h': 'editor:delete-to-beginning-of-word'
    'ctrl-cmd-d': 'editor:delete-to-end-of-word'
    'ctrl-h':'core:backspace'
    'ctrl-d':'core:delete'

    # 选中
    'ctrl-shift-b': 'editor:select-to-beginning-of-word'
    'ctrl-shift-f': 'editor:select-to-end-of-word'
 

'.platform-win32 atom-text-editor, .platform-linux atom-text-editor':
    # 查找
    'cmd-f': 'find-and-replace:show'

'atom-workspace atom-text-editor':
    # 全选
    'cmd-a':'core:select-all'

'body':
    # 新建文件
    'cmd-n':'application:new-file'

2. 实用插件

  1. advanced-open-file
  2. hyperclick
  3. atom-beautify
  4. js-hyperclick
  5. atom-javascript-snippets
  6. minimap
  7. remote-ftp
  8. autoclose-html
  9. minimap-bookmarks
  10. docblockr
  11. minimap-highlight-selected
  12. git-plus
  13. pigments
  14. highlight-selected
  15. platformio-atom-ide-terminal

3. 主题

  1. seti-ui
  2. seti-syntax

你可能感兴趣的:(Atom 配置)