Skip to content

Instantly share code, notes, and snippets.

@canxer314
Last active April 26, 2018 07:29
Show Gist options
  • Select an option

  • Save canxer314/e842a269da60e38067c6e6006f8cb2bc to your computer and use it in GitHub Desktop.

Select an option

Save canxer314/e842a269da60e38067c6e6006f8cb2bc to your computer and use it in GitHub Desktop.
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
# console.log "Saved! #{editor.getPath()}"
# Your keymap
#
# Atom keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts. Unlike style sheets however,
# each selector can only be declared once.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Atom's built-in keymap:
#
# 'atom-text-editor':
# 'enter': 'editor:newline'
#
# 'atom-workspace':
# 'ctrl-shift-p': 'core:move-up'
# 'ctrl-p': 'core:move-down'
#
# You can find more information about keymaps in these guides:
# * http://flight-manual.atom.io/using-atom/sections/basic-customization/#customizing-keybindings
# * http://flight-manual.atom.io/behind-atom/sections/keymaps-in-depth/
#
# If you're having trouble with your keybindings not working, try the
# Keybinding Resolver: `Cmd+.` on macOS and `Ctrl+.` on other platforms. See the
# Debugging Guide for more information:
# * http://flight-manual.atom.io/hacking-atom/sections/debugging/#check-the-keybindings
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# 'body':
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#configuring-with-cson
'body.platform-darwin, body.platform-win32, body.platform-linux':
# disable default ctrl-k keybindings
'ctrl-k ctrl-b': 'unset!'
# recreate emacs bindings
'ctrl-g': 'core:cancel'
'.platform-win32 atom-text-editor, .platform-linux atom-text-editor':
# disable default ctrl-k keybindings
'ctrl-k ctrl-d': 'unset!'
'body':
# disable default ctrl-k keybindings
'ctrl-k up': 'unset!'
'ctrl-k down': 'unset!'
'ctrl-k left': 'unset!'
'ctrl-k right': 'unset!'
'ctrl-k ctrl-w': 'unset!'
'ctrl-k alt-ctrl-w': 'unset!'
'ctrl-k ctrl-p': 'unset!'
'ctrl-k ctrl-n': 'unset!'
'ctrl-k ctrl-up': 'unset!'
'ctrl-k ctrl-down': 'unset!'
'ctrl-k ctrl-left': 'unset!'
'ctrl-k ctrl-right': 'unset!'
# recreate emacs bindings
'ctrl-x ctrl-l': 'editor:lower-case'
'ctrl-x ctrl-u': 'editor:upper-case'
'ctrl-x h': 'core:select-all'
'alt-x': 'command-palette:toggle'
'ctrl-g': 'core:cancel'
'ctrl-x s': 'window:save-all'
'ctrl-x k': 'core:close'
'ctrl-x ctrl-c': 'core:close'
'ctrl-x ctrl-s': 'core:save'
'ctrl-x 0': 'pane:close'
'ctrl-x 1': 'pane:close-other-items'
'ctrl-x 2': 'pane:split-down'
'ctrl-x 3': 'pane:split-right'
'ctrl-x b': 'fuzzy-finder:toggle-buffer-finder'
'ctrl-x ctrl-f': 'fuzzy-finder:toggle-file-finder'
'ctrl-x o': 'window:focus-next-pane'
# file and command palette
'ctrl-q': 'find-and-replace:select-next'
'atom-workspace atom-text-editor':
# disable default ctrl-k keybindings
"ctrl-k ctrl-u": "unset!"
"ctrl-k ctrl-l": "unset!"
"atom-workspace atom-text-editor:not([mini])":
# disable default ctrl-k keybindings
"ctrl-k ctrl-0": "unset!"
"ctrl-k ctrl-1": "unset!"
"ctrl-k ctrl-2": "unset!"
"ctrl-k ctrl-3": "unset!"
"ctrl-k ctrl-4": "unset!"
"ctrl-k ctrl-5": "unset!"
"ctrl-k ctrl-6": "unset!"
"ctrl-k ctrl-7": "unset!"
"ctrl-k ctrl-8": "unset!"
"ctrl-k ctrl-9": "unset!"
'background-tips, .tree-view, atom-text-editor.vim-mode-plus:not(.insert-mode)':
# core app stuff
'space f s': 'core:save'
'space b d': 'core:close' # buffer delete
'space b c': 'core:close' # buffer close
'space q q': 'application:quit'
'space a k': 'application:open-your-keymap'
'space a r': 'window:reload'
'space a s': 'application:show-settings'
# file and command palette
# 'space space': 'easy-motion-redux:words_starting'
'space space' : 'command-palette:toggle'
'space b b' : 'fuzzy-finder:toggle-buffer-finder'
'space b f' : 'find-and-replace:show'
'space g f' : 'fuzzy-finder:toggle-git-status-finder'
'space s a p': 'fuzzy-grep:toggle'
'space s s' : 'fuzzy-grep:toggleLastSearch'
'space f f' : 'fuzzy-finder:toggle-file-finder'
# 'space f r' : 'find-and-replace:show'
'space r f' : 'recent-finder:toggle'
'space f y' : 'editor:copy-project-path'
# windows/panes
'space 1' : 'window:focus-pane-on-left'
'space 2' : 'window:focus-pane-on-right'
'space b n': 'pane:show-next-item' # 'buffer next'
'space b p': 'pane:show-previous-item' # 'butter preview'
'space w w': 'window:focus-next-pane'
'space w H': 'pane:split-left-and-copy-active-item'
'space w J': 'pane:split-down-and-copy-active-item'
'space w K': 'pane:split-up-and-copy-active-item'
'space w L': 'pane:split-right-and-copy-active-item'
'space w v': 'pane:split-right-and-copy-active-item'
'space w c': 'pane:close' # 'window close' ('vim' window)
'space w k': 'window:focus-pane-above'
'space w j': 'window:focus-pane-below'
'space w h': 'window:focus-pane-on-left'
'space w l': 'window:focus-pane-on-right'
'space w enter': 'vim-mode-plus:maximize-pane'
'space s c': 'window:close' # 'screen close'
'space t t': 'tree-view:toggle' # 'files toggle'
'space p t': 'tree-view:toggle' # 'project toggle'
'space f t': 'tree-view:reveal-active-file' # 'file reveal'
# Surround family
'space y s' : 'vim-mode-plus:surround'
'space y s w': 'vim-mode-plus:surround-word'
'space y m s': 'vim-mode-plus:map-surround'
'space d S' : 'vim-mode-plus:delete-surround'
'space d s' : 'vim-mode-plus:delete-surround-any-pair'
'space c S' : 'vim-mode-plus:change-surround'
'space c s' : 'vim-mode-plus:change-surround-any-pair'
# git commands
'space g s' : 'git-plus:status'
'space g a' : 'git-plus:add'
'space g b' : 'git-blame:toggle'
'space g c' : 'git-plus:commit'
'space g e' : 'find-and-replace:select-all'
'space g h n': 'git-diff:move-to-next-diff'
'space g h p': 'git-diff:move-to-previous-diff'
'space g h l': 'git-diff:toggle-diff-list'
'space g g' : 'git-plus:menu'
'space g d' : 'git-plus:diff'
'space g t' : 'git-time-machine:toggle'
'space g q' : 'goto-definition:go'
# lint / annotations
'space e n' : 'linter:next-error'
'space e p' : 'linter:previous-error'
'space e N' : 'linter:previous-error'
'space e e' : 'linter:lint'
# 'space t m f': 'linter:toggle'
'space e t' : 'linter:toggle'
# editor view options
'space t n': 'editor:toggle-line-numbers'
'space t i': 'editor:toggle-indent-guide'
'space t w': 'editor:toggle-soft-wrap'
'space t v': 'window:toggle-invisibles'
# bookmarks
'space j m': 'bookmarks:toggle-bookmark'
'space j c': 'bookmarks:clear-bookmarks'
'space j n': 'bookmarks:jump-to-next-bookmark'
'space j p': 'bookmarks:jump-to-previous-bookmark'
# comments
'g c': 'editor:toggle-line-comments'
# jumpy
'space j w': 'jumpy:toggle'
# Bindings for 'Narrow' plugin
'atom-text-editor.vim-mode-plus.normal-mode':
'space n l': 'narrow:lines'
'space n f': 'narrow:fold'
'space o': 'narrow:fold'
'space n s c': 'narrow:search-current-project'
'space n s s': 'narrow:search'
'space n c': 'narrow:focus'
# 'ctrl-r ctrl-r': 'core:redo'
# 'atom-text-editor.vim-mode-plus.insert-mode.autocomplete-active':
'atom-text-editor.vim-mode-plus.insert-mode':
# recreate emacs bindings
'ctrl-b': 'core:move-left'
'ctrl-f': 'core:move-right'
'ctrl-n': 'core:move-down'
'ctrl-p': 'core:move-up'
'alt-b': 'editor:move-to-beginning-of-word'
'alt-f': 'editor:move-to-end-of-word'
'alt-e': 'editor:move-to-end-of-word'
'ctrl-a': 'editor:move-to-beginning-of-line'
'ctrl-e': 'editor:move-to-end-of-screen-line'
'alt-m': 'editor:move-to-first-character-of-line'
'ctrl-d': 'core:delete'
'alt-d': 'editor:delete-to-end-of-word'
'alt-backspace': 'editor:delete-to-beginning-of-word'
'ctrl-k': 'editor:delete-to-end-of-line'
'ctrl-/': 'core:undo'
'alt-/': 'core:redo'
'alt-g alt-g': 'go-to-line:toggle'
'alt-w': 'core:copy'
'ctrl-w': 'core:cut'
'ctrl-y': 'core:paste'
'alt-;': 'editor:toggle-line-comments'
'alt-.': 'symbols-view:toggle-file-symbols'
'alt-{': 'editor:move-to-beginning-of-previous-paragraph'
'alt-}': 'editor:move-to-beginning-of-next-paragraph'
# 'alt-/': 'autocomplete:toggle'
'alt-<': 'core:move-to-top'
'alt->': 'core:move-to-bottom'
'ctrl-shift-backspace': 'editor:delete-line'
'ctrl-j': 'editor:newline'
'ctrl-t': 'editor:transpose'
'alt-q': 'autoflow:reflow-selection'
'alt-v': 'core:page-up'
'ctrl-v': 'core:page-down'
'ctrl-_': 'core:undo'
'ctrl-r': 'find-and-replace:show'
'ctrl-s': 'find-and-replace:show'
# emmet
'ctrl-m': 'emmet:expand-abbreviation'
# disabled because the semantics are slightly different than emacs
# 'ctrl-l': 'editor:scroll-to-cursor'
# 'ctrl-o': 'editor:newline-above'
'.command-palette, .fuzzy-finder, .symbols-view, .tool-panel':
'ctrl-n': 'core:move-down'
'ctrl-p': 'core:move-up'
'ctrl-b': 'core:move-left'
'ctrl-f': 'core:move-right'
'alt-b': 'editor:move-to-beginning-of-word'
'alt-f': 'editor:move-to-end-of-word'
'alt-e': 'editor:move-to-end-of-word'
'alt-m': 'editor:move-to-first-character-of-line'
'alt-d': 'editor:delete-to-end-of-word'
'alt-backspace': 'editor:delete-to-beginning-of-word'
'ctrl-k': 'editor:delete-to-end-of-line'
'ctrl-/': 'core:undo'
'alt-/': 'core:redo'
'alt-w': 'core:copy'
'ctrl-w': 'core:cut'
'ctrl-y': 'core:paste'
# TODO merge keybinding below to initScript
# 'ctrl-a': 'editor:move-to-beginning-of-line'
# 'ctrl-e': 'editor:move-to-end-of-screen-line'
# 'ctrl-d': 'core:delete'
[
{
"name": "about",
"version": "1.8.0"
},
{
"name": "archive-view",
"version": "0.64.2"
},
{
"name": "atom-dark-syntax",
"version": "0.29.0",
"theme": "syntax"
},
{
"name": "atom-dark-ui",
"version": "0.53.1",
"theme": "ui"
},
{
"name": "atom-fuzzy-grep",
"version": "0.17.2"
},
{
"name": "atom-light-syntax",
"version": "0.29.0",
"theme": "syntax"
},
{
"name": "atom-light-ui",
"version": "0.46.1",
"theme": "ui"
},
{
"name": "atom-material-syntax",
"version": "1.0.8",
"theme": "syntax"
},
{
"name": "atom-material-ui",
"version": "2.1.3",
"theme": "ui"
},
{
"name": "atom-ternjs",
"version": "0.18.3"
},
{
"name": "autocomplete-atom-api",
"version": "0.10.7"
},
{
"name": "autocomplete-css",
"version": "0.17.5"
},
{
"name": "autocomplete-html",
"version": "0.8.4"
},
{
"name": "autocomplete-modules",
"version": "1.12.0"
},
{
"name": "autocomplete-plus",
"version": "2.40.2"
},
{
"name": "autocomplete-snippets",
"version": "1.12.0"
},
{
"name": "autoflow",
"version": "0.29.3"
},
{
"name": "autosave",
"version": "0.24.6"
},
{
"name": "background-tips",
"version": "0.27.1"
},
{
"name": "base16-tomorrow-dark-theme",
"version": "1.5.0",
"theme": "syntax"
},
{
"name": "base16-tomorrow-light-theme",
"version": "1.5.0",
"theme": "syntax"
},
{
"name": "bookmarks",
"version": "0.45.1"
},
{
"name": "bracket-matcher",
"version": "0.89.1"
},
{
"name": "busy-signal",
"version": "1.4.3"
},
{
"name": "city-lights-syntax",
"version": "1.1.8",
"theme": "syntax"
},
{
"name": "city-lights-ui",
"version": "1.3.3",
"theme": "ui"
},
{
"name": "color-picker",
"version": "2.2.5"
},
{
"name": "command-palette",
"version": "0.43.5"
},
{
"name": "css-declaration-sorter",
"version": "1.2.0"
},
{
"name": "css-snippets",
"version": "1.1.0"
},
{
"name": "dalek",
"version": "0.2.1"
},
{
"name": "deprecation-cop",
"version": "0.56.9"
},
{
"name": "dev-live-reload",
"version": "0.48.1"
},
{
"name": "dracula-syntax",
"version": "2.0.6",
"theme": "syntax"
},
{
"name": "dracula-ui",
"version": "0.6.0",
"theme": "ui"
},
{
"name": "emmet",
"version": "2.4.3"
},
{
"name": "emmet-jsx-css-modules",
"version": "1.0.0"
},
{
"name": "encoding-selector",
"version": "0.23.8"
},
{
"name": "es6-javascript",
"version": "1.0.0"
},
{
"name": "ex-mode",
"version": "0.18.0"
},
{
"name": "exception-reporting",
"version": "0.43.1"
},
{
"name": "file-icons",
"version": "2.1.17"
},
{
"name": "find-and-replace",
"version": "0.215.5"
},
{
"name": "fuzzy-finder",
"version": "1.7.5"
},
{
"name": "git-blame",
"version": "1.6.0"
},
{
"name": "git-diff",
"version": "1.3.9"
},
{
"name": "git-plus",
"version": "7.10.2"
},
{
"name": "git-time-machine",
"version": "1.5.9"
},
{
"name": "github",
"version": "0.10.3"
},
{
"name": "go-to-line",
"version": "0.33.0"
},
{
"name": "goto-definition",
"version": "1.3.4"
},
{
"name": "grammar-selector",
"version": "0.49.9"
},
{
"name": "highlight-selected",
"version": "0.13.1"
},
{
"name": "image-view",
"version": "0.62.4"
},
{
"name": "incompatible-packages",
"version": "0.27.3"
},
{
"name": "intentions",
"version": "1.1.5"
},
{
"name": "jumpy",
"version": "4.2.0"
},
{
"name": "keybinding-resolver",
"version": "0.38.1"
},
{
"name": "language-babel",
"version": "2.84.0"
},
{
"name": "language-c",
"version": "0.59.2"
},
{
"name": "language-clojure",
"version": "0.22.7"
},
{
"name": "language-coffee-script",
"version": "0.49.3"
},
{
"name": "language-csharp",
"version": "1.0.1"
},
{
"name": "language-css",
"version": "0.42.10"
},
{
"name": "language-gfm",
"version": "0.90.3"
},
{
"name": "language-git",
"version": "0.19.1"
},
{
"name": "language-go",
"version": "0.45.2"
},
{
"name": "language-html",
"version": "0.49.0"
},
{
"name": "language-hyperlink",
"version": "0.16.3"
},
{
"name": "language-java",
"version": "0.28.0"
},
{
"name": "language-javascript",
"version": "0.128.3"
},
{
"name": "language-json",
"version": "0.19.1"
},
{
"name": "language-less",
"version": "0.34.2"
},
{
"name": "language-make",
"version": "0.22.3"
},
{
"name": "language-mustache",
"version": "0.14.5"
},
{
"name": "language-objective-c",
"version": "0.15.1"
},
{
"name": "language-perl",
"version": "0.38.1"
},
{
"name": "language-php",
"version": "0.43.1"
},
{
"name": "language-property-list",
"version": "0.9.1"
},
{
"name": "language-python",
"version": "0.49.2"
},
{
"name": "language-ruby",
"version": "0.71.4"
},
{
"name": "language-ruby-on-rails",
"version": "0.25.3"
},
{
"name": "language-sass",
"version": "0.61.4"
},
{
"name": "language-shellscript",
"version": "0.26.1"
},
{
"name": "language-source",
"version": "0.9.0"
},
{
"name": "language-sql",
"version": "0.25.10"
},
{
"name": "language-text",
"version": "0.7.3"
},
{
"name": "language-todo",
"version": "0.29.4"
},
{
"name": "language-toml",
"version": "0.18.2"
},
{
"name": "language-typescript",
"version": "0.3.2"
},
{
"name": "language-xml",
"version": "0.35.2"
},
{
"name": "language-yaml",
"version": "0.31.2"
},
{
"name": "line-ending-selector",
"version": "0.7.5"
},
{
"name": "link",
"version": "0.31.4"
},
{
"name": "linter",
"version": "2.2.0"
},
{
"name": "linter-csslint",
"version": "2.0.0"
},
{
"name": "linter-eslint",
"version": "8.4.1"
},
{
"name": "linter-less",
"version": "2.6.0"
},
{
"name": "linter-ui-default",
"version": "1.7.1"
},
{
"name": "markdown-preview",
"version": "0.159.20"
},
{
"name": "markdown-preview-enhanced",
"version": "0.15.3"
},
{
"name": "merge-conflicts",
"version": "1.4.5"
},
{
"name": "metrics",
"version": "1.2.6"
},
{
"name": "minimap",
"version": "4.29.8"
},
{
"name": "minimap-find-and-replace",
"version": "4.5.2"
},
{
"name": "minimap-highlight-selected",
"version": "4.6.1"
},
{
"name": "narrow",
"version": "0.65.0"
},
{
"name": "notifications",
"version": "0.70.2"
},
{
"name": "one-dark-syntax",
"version": "1.8.2",
"theme": "syntax"
},
{
"name": "one-dark-ui",
"version": "1.10.10",
"theme": "ui"
},
{
"name": "one-light-syntax",
"version": "1.8.2",
"theme": "syntax"
},
{
"name": "one-light-ui",
"version": "1.10.10",
"theme": "ui"
},
{
"name": "open-on-github",
"version": "1.3.1"
},
{
"name": "package-generator",
"version": "1.3.0"
},
{
"name": "pigments",
"version": "0.40.2"
},
{
"name": "prettier-atom",
"version": "0.52.0"
},
{
"name": "pristine-ui",
"version": "1.1.11",
"theme": "ui"
},
{
"name": "project-manager",
"version": "3.3.5"
},
{
"name": "pure-syntax",
"version": "0.3.0",
"theme": "syntax"
},
{
"name": "react-snippets",
"version": "1.0.1"
},
{
"name": "settings-view",
"version": "0.254.1"
},
{
"name": "snippets",
"version": "1.3.1"
},
{
"name": "solarized-dark-syntax",
"version": "1.1.4",
"theme": "syntax"
},
{
"name": "solarized-light-syntax",
"version": "1.1.4",
"theme": "syntax"
},
{
"name": "spell-check",
"version": "0.72.7"
},
{
"name": "status-bar",
"version": "1.8.15"
},
{
"name": "styleguide",
"version": "0.49.10"
},
{
"name": "symbols-view",
"version": "0.118.2"
},
{
"name": "sync-settings",
"version": "0.8.5"
},
{
"name": "tabs",
"version": "0.109.1"
},
{
"name": "timecop",
"version": "0.36.2"
},
{
"name": "todo-show",
"version": "2.2.0"
},
{
"name": "tree-view",
"version": "0.221.3"
},
{
"name": "tree-view-copy-relative-path",
"version": "1.2.0"
},
{
"name": "update-package-dependencies",
"version": "0.13.1"
},
{
"name": "vim-mode-plus",
"version": "1.30.1"
},
{
"name": "welcome",
"version": "0.36.6"
},
{
"name": "whitespace",
"version": "0.37.5"
},
{
"name": "wrap-guide",
"version": "0.40.3"
}
]
{
"autocomplete-modules": {},
"autocomplete-paths": {
"ignoreBuiltinScopes": true,
"ignoreSubmodules": true,
"maxFileCount": 4500
},
"core": {
"ignoredNames": [
".git",
".hg",
".svn",
".DS_Store",
"._*",
"Thumbs.db",
"desktop.ini",
"node_modules"
],
"packagesWithKeymapsDisabled": [
"fuzzy-finder",
"git-blame",
"minimap",
"goto-definition",
"es6-javascript"
],
"projectHome": "D:\\JsDev\\",
"telemetryConsent": "no",
"themes": [
"pristine-ui",
"dracula-syntax"
],
"uriHandlerRegistration": "always"
},
"editor": {
"fontFamily": "Source Code Pro",
"scrollPastEnd": true,
"showIndentGuide": true,
"showInvisibles": true,
"softWrap": true,
"tabLength": 4,
"tabType": "soft",
"zoomFontWhenCtrlScrolling": false
},
"exception-reporting": {
"userId": "a5c273b4-3d22-4e6c-b829-df406b55a02f"
},
"git-blame": {
"columnWidth": 200
},
"git-diff": {},
"git-plus": {
"general": {}
},
"highlight-selected": {
"highlightBackground": true
},
"linter": {
"disabledProviders": [
"ESLint"
]
},
"linter-ui-default": {},
"minimap": {
"adjustMinimapWidthToSoftWrap": false,
"charHeight": 1,
"plugins": {
"find-and-replace": true,
"find-and-replaceDecorationsZIndex": 0,
"git-diff": true,
"git-diffDecorationsZIndex": 0,
"highlight-selected": true,
"highlight-selectedDecorationsZIndex": 0
}
},
"prettier-atom": {
"formatOnSaveOptions": {},
"useEslint": true
},
"project-manager": {
"sortBy": "last modified"
},
"regex-railroad-diagram": {},
"split-diff": {
"diffWords": true,
"ignoreWhitespace": true,
"leftEditorColor": "red",
"rightEditorColor": "green",
"scrollSyncType": "Vertical + Horizontal"
},
"sync-settings": {},
"vim-mode-plus": {
"autoDisableInputMethodWhenLeavingInsertMode": true
},
"welcome": {
"showOnStartup": false
}
}
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#
# Each scope (e.g. '.source.coffee' above) can only be declared once.
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson
'.source.js.jsx':
'God Bless You!':
'prefix': 'god'
'body': "/**\n
* ,s555SB@@&amp;\n
* :9H####@@@@@Xi\n
* 1@@@@@@@@@@@@@@8\n
* ,8@@@@@@@@@B@@@@@@8\n
* :B@@@@X3hi8Bs;B@@@@@Ah,\n
* ,8i r@@@B: 1S ,M@@@@@@#8;\n
* 1AB35.i: X@@8 . SGhr ,A@@@@@@@@S\n
* 1@h31MX8 18Hhh3i .i3r ,A@@@@@@@@@5\n
* ;@&amp;i,58r5 rGSS: :B@@@@@@@@@@A\n
* 1#i . 9i hX. .: .5@@@@@@@@@@@1\n
* sG1, ,G53s. 9#Xi;hS5 3B@@@@@@@B1\n
* .h8h.,A@@@MXSs, #@H1: 3ssSSX@1\n
* s ,@@@@@@@@@@@@Xhi, r#@@X1s9M8 .GA981\n
* ,. rS8H#@@@@@@@@@@#HG51;. .h31i;9@r .8@@@@BS;i;\n
* .19AXXXAB@@@@@@@@@@@@@@#MHXG893hrX#XGGXM@@@@@@@@@@MS\n
* s@@MM@@@hsX#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&amp;,\n
* :GB@#3G@@Brs ,1GM@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B,\n
* .hM@@@#@@#MX 51 r;iSGAM@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8\n
* :3B@@@@@@@@@@@&amp;9@h :Gs .;sSXH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:\n
* s&amp;HA#@@@@@@@@@@@@@@M89A;.8S. ,r3@@@@@@@@@@@@@@@@@@@@@@@@@@@r\n
* ,13B@@@@@@@@@@@@@@@@@@@5 5B3 ;. ;@@@@@@@@@@@@@@@@@@@@@@@@@@@i\n
* 5#@@#&amp;@@@@@@@@@@@@@@@@@@9 .39: ;@@@@@@@@@@@@@@@@@@@@@@@@@@@;\n
* 9@@@X:MM@@@@@@@@@@@@@@@#; ;31. H@@@@@@@@@@@@@@@@@@@@@@@@@@:\n
* SH#@B9.rM@@@@@@@@@@@@@B :. 3@@@@@@@@@@@@@@@@@@@@@@@@@@5\n
* ,:. 9@@@@@@@@@@@#HB5 .M@@@@@@@@@@@@@@@@@@@@@@@@@B\n
* ,ssirhSM@&amp;1;i19911i,. s@@@@@@@@@@@@@@@@@@@@@@@@@@S\n
* ,,,rHAri1h1rh&amp;@#353Sh: 8@@@@@@@@@@@@@@@@@@@@@@@@@#:\n
* .A3hH@#5S553&amp;@@#h i:i9S #@@@@@@@@@@@@@@@@@@@@@@@@@A.\n
*\n
*\n
*\n
*\n
*\n
* 又看源码,看你妹啊!\n
*\n
*\n
*/"
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
/*
* Examples
* (To see them, uncomment and save)
*/
// style the background color of the tree view
.tree-view {
// background-color: whitesmoke;
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
}
// style UI elements inside atom-text-editor
atom-text-editor .cursor {
// border-color: red;
}
.bracket-matcher .region {
border-bottom: 2px solid red !important;
// border: 1px dotted lime;
position: absolute;
// background-color: rgba(255, 0, 0, 0.65);
}
atom-text-editor.vim-mode-plus.visual-mode.is-focused .region {
background: rgba(255, 0, 0, 0.65);
}
.tree-view:not(.nuclide-file-tree) .selected:before {
position: absolute;
background: rgba(69, 95, 251, 0.8);
// border: 2px dotted #455ffb;
margin-left: -100%;
margin-right: -10px;
z-index: -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment