Skip to content

Instantly share code, notes, and snippets.

@dlip
Last active November 23, 2016 00:46
Show Gist options
  • Save dlip/55213df9ab7e88efa45c436cd13e671b to your computer and use it in GitHub Desktop.
Save dlip/55213df9ab7e88efa45c436cd13e671b 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 OS X 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
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson
'atom-text-editor.vim-mode':
'q p': 'vim-mode:reset-normal-mode'
'ctrl-c': 'unset!'
'atom-text-editor.vim-mode.insert-mode':
'ctrl-w': 'editor:delete-to-beginning-of-word'
'ctrl-u': 'editor:delete-to-beginning-of-line'
'ctrl-y': 'vim-mode:copy-from-line-above'
# disabled for compatibility with the common binding for going to the end of the line
# 'ctrl-e': 'vim-mode:copy-from-line-below'
'atom-text-editor.vim-mode.replace-mode':
'backspace': 'vim-mode:replace-mode-backspace'
'atom-text-editor.vim-mode:not(.insert-mode)':
# Plugin commands
'g f': 'navigate:forward'
'g w': 'navigate:back'
'g i': 'editor:open-wiki-index'
'h': 'editor:fold-current-row-toggle'
'H': 'editor:fold-all-toggle'
'space space': 'ctrl-last-tab:previous'
# Leader commands
# ; Command Palette
';': 'command-palette:toggle'
# B Fuzzy finder buffer
'space b': 'fuzzy-finder:toggle-buffer-finder'
'space d enter': 'split-diff:toggle'
'space d e': 'split-diff:next-diff'
'space d u': 'split-diff:prev-diff'
# P file pallete
'space p': 'fuzzy-finder:toggle-file-finder'
# Git
'space G': 'atomatigit:toggle'
'space g enter': 'git-plus:commit'
'space g a': 'git-plus:add'
'space g b': 'git-plus:new-branch'
'space g c': 'git-plus:checkout'
'space g f': 'git-plus:fetch'
'space g p': 'git-plus:push'
'space g l': 'git-plus:pull-using-rebase'
'space g m': 'git-plus:merge'
'space g M': 'git-plus:merge-remote'
'space g s': 'git:status'
'space g u': 'git-plus:unstage-files'
'space g z': 'git-plus:checkout-current-file'
'space g Z': 'git-plus:checkout-all-files'
# W Window
'space n': 'window:focus-pane-on-left'
'space i': 'window:focus-pane-on-right'
'space u': 'window:focus-pane-above'
'space e': 'window:focus-pane-below'
'space w w': 'window:focus-next-pane'
'space w p': 'window:focus-previous-pane'
'space w v': 'pane:split-right'
'space w s': 'pane:split-down'
'space w q': 'pane:close'
'space m m': 'editor:csv-to-markdown'
'space y': 'pane:show-next-item'
'space l': 'pane:show-previous-item'
'space /': 'editor:toggle-line-comments-vi'
# T Todo
'space t u': 'todotxt:increase-priority'
'space t e': 'todotxt:decrease-priority'
# Notational Velocity
'space v': 'nvatom:toggle'
'space d': 'nvatom:openInterlink'
# File actions
'space f q': 'core:close'
'space f w': 'core:save'
'space f d': 'tree-view:remove'
'space f r': 'tree-view:move'
'enter': 'core:save'
# Normal commands
'n': 'vim-mode:move-left'
'left': 'vim-mode:move-left'
'backspace': 'core:move-left'
'i': 'vim-mode:move-right'
'space': 'vim-mode:move-right'
'right': 'vim-mode:move-right'
'u': 'vim-mode:move-up'
'up': 'vim-mode:move-up'
'e': 'vim-mode:move-down'
'down': 'vim-mode:move-down'
'y': 'vim-mode:move-to-next-word'
'Y': 'vim-mode:move-to-next-whole-word'
'y': 'vim-mode:move-to-end-of-word'
'Y': 'vim-mode:move-to-end-of-whole-word'
'l': 'vim-mode:move-to-previous-word'
'L': 'vim-mode:move-to-previous-whole-word'
')': 'vim-mode:move-to-next-sentence',
'(': 'vim-mode:move-to-previous-sentence',
'}': 'vim-mode:move-to-next-paragraph'
'{': 'vim-mode:move-to-previous-paragraph'
'0': 'vim-mode:move-to-beginning-of-line'
'N': 'vim-mode:move-to-first-character-of-line'
'_': 'vim-mode:move-to-first-character-of-line-and-down'
'I': 'vim-mode:move-to-last-character-of-line'
'$': 'vim-mode:move-to-last-character-of-line'
'g _': 'vim-mode:move-to-last-nonblank-character-of-line-and-down'
'-': 'vim-mode:move-to-first-character-of-line-up'
'+': 'vim-mode:move-to-first-character-of-line-down'
'g g': 'vim-mode:move-to-start-of-file'
'U': 'vim-mode:scroll-half-screen-up'
#'j': 'vim-mode:scroll-full-screen-up'
'E': 'vim-mode:scroll-half-screen-down'
#'h': 'vim-mode:scroll-full-screen-down'
'ctrl-e': 'vim-mode:scroll-down'
'ctrl-y': 'vim-mode:scroll-up'
'z enter': 'unset!'
'z t': 'unset!'
'z .': 'unset!'
'z z': 'unset!'
'z -': 'unset!'
'z b': 'unset!'
'z s': 'unset!'
'z e': 'unset!'
'z M': 'unset!'
'z R': 'unset!'
'z c': 'unset!'
'z o': 'unset!'
'h enter': 'vim-mode:scroll-cursor-to-top'
'h t': 'vim-mode:scroll-cursor-to-top-leave'
'h .': 'vim-mode:scroll-cursor-to-middle'
'h z': 'vim-mode:scroll-cursor-to-middle-leave'
'h -': 'vim-mode:scroll-cursor-to-bottom'
'h b': 'vim-mode:scroll-cursor-to-bottom-leave'
'h s': 'vim-mode:scroll-cursor-to-left'
'h e': 'vim-mode:scroll-cursor-to-right'
'h u': 'editor:fold-all'
'h e': 'editor:unfold-all'
'h n': 'editor:fold-current-row'
'h i': 'editor:unfold-current-row'
'G': 'vim-mode:move-to-line'
#'H': 'vim-mode:move-to-top-of-screen'
#'L': 'vim-mode:move-to-bottom-of-screen'
'M': 'vim-mode:move-to-middle-of-screen'
'd': 'vim-mode:delete'
'D': 'vim-mode:delete-to-last-character-of-line'
'w': 'vim-mode:change'
'W': 'vim-mode:change-to-last-character-of-line'
#'S': 'vim-mode:substitute-line'
'r': 'vim-mode:replace'
'S': 'vim-mode:insert-at-beginning-of-line'
'>': 'vim-mode:indent'
'<': 'vim-mode:outdent'
'=': 'vim-mode:auto-indent'
'J': 'vim-mode:join'
'c': 'vim-mode:yank'
'C': 'vim-mode:yank-line'
'V': 'vim-mode:put-before'
'v': 'vim-mode:put-after'
'g ~': 'vim-mode:toggle-case'
'g U': 'vim-mode:upper-case'
'g u': 'vim-mode:lower-case'
'~': 'vim-mode:toggle-case-now'
'space n': 'window:focus-pane-on-left'
'space i': 'window:focus-pane-on-right'
'space u': 'window:focus-pane-above'
'space e': 'window:focus-pane-below'
'space w w': 'window:focus-next-pane'
'space w p': 'window:focus-previous-pane'
'space w v': 'pane:split-right'
'space w s': 'pane:split-down'
'space w q': 'pane:close'
'm': 'vim-mode:mark'
'`': 'vim-mode:move-to-mark-literal'
'\'': 'vim-mode:move-to-mark'
'f': 'vim-mode:find'
'F': 'vim-mode:find-backwards'
't': 'vim-mode:till'
'T': 'vim-mode:till-backwards'
'p': 'vim-mode:repeat-find'
'P': 'vim-mode:repeat-find-reverse'
'/': 'vim-mode:search'
'?': 'vim-mode:reverse-search'
'*': 'vim-mode:search-current-word'
'#': 'vim-mode:reverse-search-current-word'
'k': 'vim-mode:repeat-search'
'K': 'vim-mode:repeat-search-backwards'
'atom-text-editor.vim-mode.normal-mode':
's': 'vim-mode:activate-insert-mode'
'insert': 'vim-mode:activate-insert-mode'
'R': 'vim-mode:activate-replace-mode'
'a': 'vim-mode:activate-characterwise-visual-mode'
'A': 'vim-mode:activate-linewise-visual-mode'
'ctrl-v': 'unset!'
'ctrl-a': 'vim-mode:activate-blockwise-visual-mode'
'z': 'vim-mode:undo'
'Z': 'core:redo'
'O': 'vim-mode:insert-above-with-newline'
'o': 'vim-mode:insert-below-with-newline'
't': 'vim-mode:insert-after'
'T': 'vim-mode:insert-after-end-of-line'
'x': 'vim-mode:delete-right'
'X': 'vim-mode:delete-left'
#'s': 'vim-mode:substitute'
'.': 'vim-mode:repeat'
'ctrl-]': 'symbols-view:go-to-declaration'
'ctrl-T': 'symbols-view:return-from-declaration'
'ctrl-x': 'unset!'
'ctrl-=': 'vim-mode:increase'
'ctrl--': 'vim-mode:decrease'
'atom-text-editor.vim-mode.operator-pending-mode, atom-text-editor.vim-mode.visual-mode':
'i w': 'unset!'
'i W': 'unset!'
'i "': 'unset!'
'i \'': 'unset!'
'i `': 'unset!'
'i {': 'unset!'
'i }': 'unset!'
'i B': 'unset!'
'i <': 'unset!'
'i >': 'unset!'
'i t': 'unset!'
'i [': 'unset!'
'i ]': 'unset!'
'i (': 'unset!'
'i )': 'unset!'
'i b': 'unset!'
'i p': 'unset!'
'r w': 'vim-mode:select-inside-word'
'r W': 'vim-mode:select-inside-whole-word'
'r "': 'vim-mode:select-inside-double-quotes'
'r \'': 'vim-mode:select-inside-single-quotes'
'r `': 'vim-mode:select-inside-back-ticks'
'r {': 'vim-mode:select-inside-curly-brackets'
'r }': 'vim-mode:select-inside-curly-brackets'
'r B': 'vim-mode:select-inside-curly-brackets'
'r <': 'vim-mode:select-inside-angle-brackets'
'r >': 'vim-mode:select-inside-angle-brackets'
'r t': 'vim-mode:select-inside-tags'
'r [': 'vim-mode:select-inside-square-brackets'
'r ]': 'vim-mode:select-inside-square-brackets'
'r (': 'vim-mode:select-inside-parentheses'
'r )': 'vim-mode:select-inside-parentheses'
'r b': 'vim-mode:select-inside-parentheses'
'r p': 'vim-mode:select-inside-paragraph'
'a w': 'vim-mode:select-a-word'
'a W': 'vim-mode:select-a-whole-word'
'a "': 'vim-mode:select-around-double-quotes'
'a \'': 'vim-mode:select-around-single-quotes'
'a `': 'vim-mode:select-around-back-ticks'
'a {': 'vim-mode:select-around-curly-brackets'
'a }': 'vim-mode:select-around-curly-brackets'
'a B': 'vim-mode:select-around-curly-brackets'
'a <': 'vim-mode:select-around-angle-brackets'
'a >': 'vim-mode:select-around-angle-brackets'
'a [': 'vim-mode:select-around-square-brackets'
'a ]': 'vim-mode:select-around-square-brackets'
'a (': 'vim-mode:select-around-parentheses'
'a )': 'vim-mode:select-around-parentheses'
'a b': 'vim-mode:select-around-parentheses'
'a p': 'vim-mode:select-around-paragraph'
'x': 'vim-mode:reset-normal-mode'
'atom-text-editor.vim-mode.visual-mode':
'space /': 'editor:toggle-line-comments-vi'
'x': 'vim-mode:delete'
's': 'unset!'
'o': 'vim-mode:reverse-selections'
'a': 'vim-mode:activate-characterwise-visual-mode'
'A': 'vim-mode:activate-linewise-visual-mode'
'ctrl-a': 'vim-mode:activate-blockwise-visual-mode'
'.atomatigit .file-list-view':
'a': 'atomatigit:stage'
'A': 'atomatigit:unstage'
'c': 'atomatigit:commit'
'.atomatigit .file-list-view, .atomatigit .branch-list-view, .atomatigit .commit-list-view':
'e': 'core:move-down'
'u': 'core:move-up'
'q': 'core:cancel'
'enter': 'atomatigit:open'
'backspace': 'atomatigit:kill'
[
{
"name": "about",
"version": "1.7.0"
},
{
"name": "advanced-open-file",
"version": "0.16.4"
},
{
"name": "archive-view",
"version": "0.62.0"
},
{
"name": "atom-beautify",
"version": "0.29.13"
},
{
"name": "atom-dark-syntax",
"version": "0.27.0",
"theme": "syntax"
},
{
"name": "atom-dark-ui",
"version": "0.52.0",
"theme": "ui"
},
{
"name": "atom-light-syntax",
"version": "0.28.0",
"theme": "syntax"
},
{
"name": "atom-light-ui",
"version": "0.45.0",
"theme": "ui"
},
{
"name": "autocomplete-atom-api",
"version": "0.10.0"
},
{
"name": "autocomplete-css",
"version": "0.13.1"
},
{
"name": "autocomplete-go",
"version": "1.3.0"
},
{
"name": "autocomplete-html",
"version": "0.7.2"
},
{
"name": "autocomplete-plus",
"version": "2.31.4"
},
{
"name": "autocomplete-snippets",
"version": "1.11.0"
},
{
"name": "autoflow",
"version": "0.27.0"
},
{
"name": "autosave",
"version": "0.23.1"
},
{
"name": "background-tips",
"version": "0.26.1"
},
{
"name": "base16-tomorrow-dark-theme",
"version": "1.3.0",
"theme": "syntax"
},
{
"name": "base16-tomorrow-light-theme",
"version": "1.3.0",
"theme": "syntax"
},
{
"name": "blame",
"version": "0.10.0"
},
{
"name": "bookmarks",
"version": "0.42.0"
},
{
"name": "bracket-matcher",
"version": "0.82.2"
},
{
"name": "builder-go",
"version": "1.0.1"
},
{
"name": "command-palette",
"version": "0.39.0"
},
{
"name": "ctrl-last-tab",
"version": "0.3.0"
},
{
"name": "deprecation-cop",
"version": "0.54.1"
},
{
"name": "dev-live-reload",
"version": "0.47.0"
},
{
"name": "encoding-selector",
"version": "0.22.0"
},
{
"name": "exception-reporting",
"version": "0.40.0"
},
{
"name": "file-icons",
"version": "1.7.25"
},
{
"name": "find-and-replace",
"version": "0.202.2"
},
{
"name": "fuzzy-finder",
"version": "1.4.0"
},
{
"name": "git-diff",
"version": "1.1.0"
},
{
"name": "git-log",
"version": "0.4.1"
},
{
"name": "git-plus",
"version": "5.25.1"
},
{
"name": "git-status",
"version": "0.3.4"
},
{
"name": "git-time-machine",
"version": "1.5.4"
},
{
"name": "go-config",
"version": "1.2.4"
},
{
"name": "go-debug",
"version": "0.1.22"
},
{
"name": "go-get",
"version": "2.1.1"
},
{
"name": "go-plus",
"version": "4.3.2"
},
{
"name": "go-to-line",
"version": "0.31.0"
},
{
"name": "godoc",
"version": "1.1.1"
},
{
"name": "gofmt",
"version": "1.2.0"
},
{
"name": "gometalinter-linter",
"version": "1.2.2"
},
{
"name": "gorename",
"version": "1.1.0"
},
{
"name": "grammar-selector",
"version": "0.48.2"
},
{
"name": "highlight-selected",
"version": "0.11.2"
},
{
"name": "image-view",
"version": "0.60.0"
},
{
"name": "incompatible-packages",
"version": "0.26.1"
},
{
"name": "jumpy",
"version": "3.1.3"
},
{
"name": "keybinding-resolver",
"version": "0.35.0"
},
{
"name": "language-ansible",
"version": "0.1.11"
},
{
"name": "language-c",
"version": "0.54.0"
},
{
"name": "language-clojure",
"version": "0.22.1"
},
{
"name": "language-coffee-script",
"version": "0.48.0"
},
{
"name": "language-csharp",
"version": "0.13.0"
},
{
"name": "language-css",
"version": "0.40.1"
},
{
"name": "language-diff",
"version": "0.6.0"
},
{
"name": "language-docker",
"version": "1.1.7"
},
{
"name": "language-gfm",
"version": "0.88.0"
},
{
"name": "language-git",
"version": "0.15.0"
},
{
"name": "language-go",
"version": "0.43.0"
},
{
"name": "language-hcl",
"version": "0.4.0"
},
{
"name": "language-html",
"version": "0.47.1"
},
{
"name": "language-hyperlink",
"version": "0.16.1"
},
{
"name": "language-java",
"version": "0.24.0"
},
{
"name": "language-javascript",
"version": "0.122.0"
},
{
"name": "language-json",
"version": "0.18.3"
},
{
"name": "language-less",
"version": "0.29.6"
},
{
"name": "language-make",
"version": "0.22.2"
},
{
"name": "language-mustache",
"version": "0.13.0"
},
{
"name": "language-objective-c",
"version": "0.15.1"
},
{
"name": "language-perl",
"version": "0.37.0"
},
{
"name": "language-php",
"version": "0.37.3"
},
{
"name": "language-property-list",
"version": "0.8.0"
},
{
"name": "language-python",
"version": "0.45.1"
},
{
"name": "language-ruby",
"version": "0.70.2"
},
{
"name": "language-ruby-on-rails",
"version": "0.25.1"
},
{
"name": "language-sass",
"version": "0.57.0"
},
{
"name": "language-shellscript",
"version": "0.23.0"
},
{
"name": "language-source",
"version": "0.9.0"
},
{
"name": "language-sql",
"version": "0.25.0"
},
{
"name": "language-text",
"version": "0.7.1"
},
{
"name": "language-todo",
"version": "0.29.1"
},
{
"name": "language-toml",
"version": "0.18.1"
},
{
"name": "language-xml",
"version": "0.34.12"
},
{
"name": "language-yaml",
"version": "0.27.1"
},
{
"name": "line-ending-selector",
"version": "0.5.0"
},
{
"name": "link",
"version": "0.31.2"
},
{
"name": "linter",
"version": "1.11.18"
},
{
"name": "markdown-pdf",
"version": "1.5.0"
},
{
"name": "markdown-preview",
"version": "0.158.8"
},
{
"name": "markdown-preview-opener",
"version": "0.1.1"
},
{
"name": "markdown-scroll-sync",
"version": "2.1.2"
},
{
"name": "markdown-writer",
"version": "2.6.2"
},
{
"name": "merge-conflicts",
"version": "1.4.4"
},
{
"name": "metrics",
"version": "1.1.2"
},
{
"name": "navigate",
"version": "0.1.17"
},
{
"name": "navigator-go",
"version": "1.1.3"
},
{
"name": "notifications",
"version": "0.65.1"
},
{
"name": "nvatom",
"version": "0.11.0"
},
{
"name": "one-dark-syntax",
"version": "1.5.0",
"theme": "syntax"
},
{
"name": "one-dark-ui",
"version": "1.6.2",
"theme": "ui"
},
{
"name": "one-light-syntax",
"version": "1.5.0",
"theme": "syntax"
},
{
"name": "one-light-ui",
"version": "1.6.2",
"theme": "ui"
},
{
"name": "open-on-github",
"version": "1.2.1"
},
{
"name": "open-recent",
"version": "5.0.0"
},
{
"name": "package-generator",
"version": "1.0.1"
},
{
"name": "settings-view",
"version": "0.243.1"
},
{
"name": "snippets",
"version": "1.0.4"
},
{
"name": "solarized-dark-syntax",
"version": "1.0.5",
"theme": "syntax"
},
{
"name": "solarized-light-syntax",
"version": "1.0.5",
"theme": "syntax"
},
{
"name": "spell-check",
"version": "0.68.4"
},
{
"name": "split-diff",
"version": "1.0.6"
},
{
"name": "status-bar",
"version": "1.4.1"
},
{
"name": "styleguide",
"version": "0.47.2"
},
{
"name": "symbols-view",
"version": "0.113.1"
},
{
"name": "sync-settings",
"version": "0.7.2"
},
{
"name": "tabs",
"version": "0.103.0"
},
{
"name": "tabs-to-spaces",
"version": "1.0.2"
},
{
"name": "tester-go",
"version": "2.0.2"
},
{
"name": "timecop",
"version": "0.33.2"
},
{
"name": "tree-view",
"version": "0.210.0"
},
{
"name": "update-package-dependencies",
"version": "0.10.0"
},
{
"name": "vim-mode",
"version": "0.65.1"
},
{
"name": "welcome",
"version": "0.35.1"
},
{
"name": "whitespace",
"version": "0.35.0"
},
{
"name": "wrap-guide",
"version": "0.38.2"
}
]
{
"atom-beautify": {
"general": {
"_analyticsUserId": "6b112a46-29dd-4709-9eba-9c851b7d767e"
}
},
"autosave": {
"enabled": true
},
"core": {
"telemetryConsent": "no"
},
"editor": {
"fontSize": 13,
"showInvisibles": true
},
"exception-reporting": {
"userId": "72175a4c-3313-3a2c-6261-747b4d981baf"
},
"go-plus": {
"currentPanelHeight": "21.150952858575728vh",
"panelDisplayMode": "closed"
},
"markdown-preview": {
"breakOnSingleNewline": true,
"grammars": [
"source.gfm",
"source.litcoffee",
"text.html.basic",
"text.md",
"text.plain",
"text.plain.null-grammar",
"source.gfm.nvatom"
]
},
"markdown-preview-opener": {
"closePreviewWhenClosingEditor": true
},
"minimap": {
"plugins": {
"find-and-replace": true,
"find-and-replaceDecorationsZIndex": 0,
"highlight-selected": true,
"highlight-selectedDecorationsZIndex": 0
}
},
"navigate": {
"f1": "http://devdocs.io/#q=&searchterm",
"f10": "https://duckduckgo.com/?q=&searchterm",
"f6": "http://www.bing.com/search?q=&searchterm"
},
"nvatom": {
"directory": "C:\\Users\\lipscoda\\Documents\\danes-notes"
},
"sync-settings": {},
"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
/*
* 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%);
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
// border-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment