Last active
January 3, 2017 16:37
-
-
Save cbstodd/5b44ef81dc0563580c00 to your computer and use it in GitHub Desktop.
automatic update by http://atom.io/packages/sync-settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Atom settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 make opened Markdown files always be soft wrapped: | |
# | |
# path = require 'path' | |
# | |
# atom.workspaceView.eachEditorView (editorView) -> | |
# editor = editorView.getEditor() | |
# if path.extname(editor.getPath()) is '.md' | |
# editor.setSoftWrapped(true) | |
atom.commands.add 'atom-workspace', 'custom-commands:dismiss-notifications', -> | |
atom.notifications.getNotifications().forEach (notification) -> | |
notification.dismiss() | |
atom.notifications.clear() | |
UIFontSize = 12 | |
atom.commands.add 'atom-workspace', | |
'ui:increase-font-size': -> | |
UIFontSize += 1 | |
document.documentElement.style.fontSize = UIFontSize + 'px' | |
'ui:decrease-font-size': -> | |
UIFontSize -= 1 | |
document.documentElement.style.fontSize = UIFontSize + 'px' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your keymap | |
# | |
# Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors | |
# to apply styles to elements, Atom keymaps use selectors to associate | |
# keystrokes with events in specific contexts. | |
# | |
# 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: | |
# | |
'body': | |
'cmd-shift-n': 'tree-view:add-file' | |
# 'cmd-shift-m': 'tree-view:add-folder' | |
'atom-text-editor': | |
'cmd-shift-i': 'core:move-up' | |
'cmd-shift-k': 'core:move-left' | |
'shift-space': 'core:move-right' | |
'cmd-shift-space': 'core:move-down' | |
'cmd-alt-t': 'terminal-plus:toggle' | |
'ctrl-enter': 'terminal-plus:insert-selected-text' | |
'.platform-darwin': | |
'cmd-1': 'tree-view:toggle' | |
'.tree-view': | |
'cmd-1': 'tree-view:toggle' | |
'.editor': | |
'cmd-shift-b': 'atom-beautify:beautify-editor' | |
# '.workspace': | |
# 'command-shift-i': 'cursor:move-up' | |
# 'command-shift-j': 'core:move-left' | |
# 'command-shift': 'core:move-right' | |
# 'command-shift-n': 'core:move-down' | |
# '.workspace': | |
# 'ctrl-shift-p': 'core:move-up' | |
# 'ctrl-p': 'core:move-down' | |
# | |
# You can find more information about keymaps in these guides: | |
# * https://atom.io/docs/latest/customizing-atom#customizing-key-bindings | |
# * https://atom.io/docs/latest/advanced/keymaps | |
# | |
# This file uses CoffeeScript Object Notation (CSON). | |
# If you are unfamiliar with CSON, you can read more about it here: | |
# https://github.com/bevry/cson#what-is-cson | |
# DISMISS POP-UP notifications | |
'atom-workspace': | |
'ctrl-shift-d': 'custom-commands:dismiss-notifications' | |
'atom-workspace': | |
'ctrl-+': 'ui:increase-font-size' | |
'ctrl--': 'ui:decrease-font-size' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Remote-FTP", | |
"version": "0.9.4" | |
}, | |
{ | |
"name": "Zen", | |
"version": "0.16.4" | |
}, | |
{ | |
"name": "about", | |
"version": "1.7.0" | |
}, | |
{ | |
"name": "afterglow-like", | |
"version": "0.2.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "afterglow-monokai-syntax", | |
"version": "1.3.4", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "afterglow-plus", | |
"version": "1.6.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "angular-2-typeScript-snippets", | |
"version": "0.6.3" | |
}, | |
{ | |
"name": "angular2-snippets", | |
"version": "0.3.0" | |
}, | |
{ | |
"name": "angularjs", | |
"version": "0.3.5" | |
}, | |
{ | |
"name": "angularjs-helper", | |
"version": "0.10.2" | |
}, | |
{ | |
"name": "angularjs-snippets", | |
"version": "0.10.18" | |
}, | |
{ | |
"name": "angularjs-styleguide-snippets", | |
"version": "0.9.1" | |
}, | |
{ | |
"name": "archive-view", | |
"version": "0.62.0" | |
}, | |
{ | |
"name": "atom-beautify" | |
}, | |
{ | |
"name": "atom-bootstrap3", | |
"version": "1.2.12" | |
}, | |
{ | |
"name": "atom-color-highlight", | |
"version": "3.0.8" | |
}, | |
{ | |
"name": "atom-dark-syntax", | |
"version": "0.27.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-dark-ui", | |
"version": "0.52.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-dark-ui-slim", | |
"version": "0.47.1", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-espresso-soda-theme", | |
"version": "0.10.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-handlebars", | |
"version": "1.3.0" | |
}, | |
{ | |
"name": "atom-html-preview", | |
"version": "0.1.22" | |
}, | |
{ | |
"name": "atom-jade", | |
"version": "0.3.0" | |
}, | |
{ | |
"name": "atom-light-syntax", | |
"version": "0.28.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-light-ui", | |
"version": "0.45.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-lorempixel", | |
"version": "0.1.0" | |
}, | |
{ | |
"name": "atom-material-syntax", | |
"version": "0.4.6", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-material-ui", | |
"version": "1.3.8", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-ng-attr-hint", | |
"version": "2.1.0" | |
}, | |
{ | |
"name": "atom-react-native-autocomplete", | |
"version": "0.0.27" | |
}, | |
{ | |
"name": "atom-soda-dark-ui", | |
"version": "1.1.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-terminal", | |
"version": "0.8.0" | |
}, | |
{ | |
"name": "atom-ternjs", | |
"version": "0.16.1" | |
}, | |
{ | |
"name": "atom-typescript", | |
"version": "10.1.13" | |
}, | |
{ | |
"name": "atomcasts-syntax", | |
"version": "0.10.3", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "auto-detect-indentation", | |
"version": "1.3.0" | |
}, | |
{ | |
"name": "auto-update-packages", | |
"version": "1.0.1" | |
}, | |
{ | |
"name": "autoclose-html", | |
"version": "0.23.0" | |
}, | |
{ | |
"name": "autocomplete", | |
"version": "0.47.0" | |
}, | |
{ | |
"name": "autocomplete-angular-material", | |
"version": "0.4.0" | |
}, | |
{ | |
"name": "autocomplete-atom-api", | |
"version": "0.10.0" | |
}, | |
{ | |
"name": "autocomplete-css", | |
"version": "0.13.1" | |
}, | |
{ | |
"name": "autocomplete-html", | |
"version": "0.7.2" | |
}, | |
{ | |
"name": "autocomplete-js-import", | |
"version": "1.2.1" | |
}, | |
{ | |
"name": "autocomplete-json", | |
"version": "5.2.0" | |
}, | |
{ | |
"name": "autocomplete-modules", | |
"version": "1.6.7" | |
}, | |
{ | |
"name": "autocomplete-paths", | |
"version": "1.0.5" | |
}, | |
{ | |
"name": "autocomplete-plus", | |
"version": "2.31.4" | |
}, | |
{ | |
"name": "autocomplete-ruby", | |
"version": "0.2.3" | |
}, | |
{ | |
"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-ocean-dark", | |
"version": "1.2.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "base16-railscasts", | |
"version": "0.5.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "base16-tomorrow-dark-theme", | |
"version": "1.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "base16-tomorrow-light-theme", | |
"version": "1.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "batman-syntax", | |
"version": "1.0.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "bookmarks", | |
"version": "0.42.0" | |
}, | |
{ | |
"name": "bottom-dock", | |
"version": "0.4.4" | |
}, | |
{ | |
"name": "bracket-matcher", | |
"version": "0.82.2" | |
}, | |
{ | |
"name": "broadcast-theme", | |
"version": "1.2.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "browser-plus", | |
"version": "0.0.87" | |
}, | |
{ | |
"name": "cake-syntax", | |
"version": "0.5.3", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "chester-atom-syntax", | |
"version": "0.1.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "close-tags", | |
"version": "0.6.0" | |
}, | |
{ | |
"name": "color-picker", | |
"version": "2.2.3" | |
}, | |
{ | |
"name": "command-palette", | |
"version": "0.39.0" | |
}, | |
{ | |
"name": "cupcake-syntax", | |
"version": "0.6.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "custom-title", | |
"version": "1.0.1" | |
}, | |
{ | |
"name": "darkula-ui", | |
"version": "0.1.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "darkular-syntax", | |
"version": "0.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "deprecation-cop", | |
"version": "0.54.1" | |
}, | |
{ | |
"name": "dev-live-reload", | |
"version": "0.47.0" | |
}, | |
{ | |
"name": "earthsung-by-jackson-syntax", | |
"version": "0.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "ember-cli-helper", | |
"version": "0.9.0" | |
}, | |
{ | |
"name": "ember-snippets", | |
"version": "1.4.0" | |
}, | |
{ | |
"name": "emmet", | |
"version": "2.4.3" | |
}, | |
{ | |
"name": "encoding-selector", | |
"version": "0.22.0" | |
}, | |
{ | |
"name": "erb-helper", | |
"version": "1.0.1" | |
}, | |
{ | |
"name": "es6-javascript", | |
"version": "1.0.0" | |
}, | |
{ | |
"name": "exception-reporting", | |
"version": "0.40.0" | |
}, | |
{ | |
"name": "file-icons", | |
"version": "2.0.4" | |
}, | |
{ | |
"name": "find-and-replace", | |
"version": "0.202.2" | |
}, | |
{ | |
"name": "firewatch-syntax", | |
"version": "1.0.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "fresh-syntax", | |
"version": "0.4.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "fuzzy-finder", | |
"version": "1.4.0" | |
}, | |
{ | |
"name": "genesis-syntax", | |
"version": "1.0.7", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "genesis-ui", | |
"version": "0.5.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "git-diff", | |
"version": "1.1.0" | |
}, | |
{ | |
"name": "git-plus", | |
"version": "7.0.4" | |
}, | |
{ | |
"name": "go-to-line", | |
"version": "0.31.0" | |
}, | |
{ | |
"name": "grammar-selector", | |
"version": "0.48.2" | |
}, | |
{ | |
"name": "gruvbox", | |
"version": "1.0.5", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "highlight-selected", | |
"version": "0.11.2" | |
}, | |
{ | |
"name": "image-view", | |
"version": "0.60.0" | |
}, | |
{ | |
"name": "incompatible-packages", | |
"version": "0.26.1" | |
}, | |
{ | |
"name": "isotope-light-ui", | |
"version": "2.2.6", | |
"theme": "ui" | |
}, | |
{ | |
"name": "isotope-ui", | |
"version": "2.7.1", | |
"theme": "ui" | |
}, | |
{ | |
"name": "itg-dark-syntax", | |
"version": "1.1.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "jquery-snippets", | |
"version": "11.0.0" | |
}, | |
{ | |
"name": "js-autoimport", | |
"version": "0.5.1" | |
}, | |
{ | |
"name": "jshint", | |
"version": "1.8.6" | |
}, | |
{ | |
"name": "keybinding-resolver", | |
"version": "0.35.0" | |
}, | |
{ | |
"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-ejs", | |
"version": "0.4.0" | |
}, | |
{ | |
"name": "language-ember-script", | |
"version": "0.2.0" | |
}, | |
{ | |
"name": "language-emberscript", | |
"version": "0.1.0" | |
}, | |
{ | |
"name": "language-gfm", | |
"version": "0.88.0" | |
}, | |
{ | |
"name": "language-git", | |
"version": "0.15.0" | |
}, | |
{ | |
"name": "language-go", | |
"version": "0.43.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-javascript-jsx", | |
"version": "0.3.7" | |
}, | |
{ | |
"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": "linter-csslint", | |
"version": "1.3.3" | |
}, | |
{ | |
"name": "linter-erb", | |
"version": "1.0.3" | |
}, | |
{ | |
"name": "linter-eslint", | |
"version": "8.0.0" | |
}, | |
{ | |
"name": "linter-htmlhint", | |
"version": "1.3.1" | |
}, | |
{ | |
"name": "linter-jade", | |
"version": "0.3.2" | |
}, | |
{ | |
"name": "linter-jscs", | |
"version": "4.1.1" | |
}, | |
{ | |
"name": "linter-php", | |
"version": "1.3.1" | |
}, | |
{ | |
"name": "linter-ruby", | |
"version": "1.2.4" | |
}, | |
{ | |
"name": "linter-sass-lint", | |
"version": "1.7.4" | |
}, | |
{ | |
"name": "linter-tslint", | |
"version": "0.12.0" | |
}, | |
{ | |
"name": "livereload", | |
"version": "0.4.4" | |
}, | |
{ | |
"name": "livestyle-atom", | |
"version": "0.2.7" | |
}, | |
{ | |
"name": "markdown-preview", | |
"version": "0.158.8" | |
}, | |
{ | |
"name": "markdown-preview-plus", | |
"version": "2.4.0" | |
}, | |
{ | |
"name": "material-ui", | |
"version": "1.0.9", | |
"theme": "ui" | |
}, | |
{ | |
"name": "merge-conflicts", | |
"version": "1.4.4" | |
}, | |
{ | |
"name": "metrics", | |
"version": "1.1.2" | |
}, | |
{ | |
"name": "minimap", | |
"version": "4.25.7" | |
}, | |
{ | |
"name": "minimap-autohide", | |
"version": "0.10.1" | |
}, | |
{ | |
"name": "minimap-color-highlight", | |
"version": "4.1.4" | |
}, | |
{ | |
"name": "minimap-find-and-replace", | |
"version": "4.5.1" | |
}, | |
{ | |
"name": "minimap-highlight-selected", | |
"version": "4.4.0" | |
}, | |
{ | |
"name": "minimap-linter", | |
"version": "1.6.0" | |
}, | |
{ | |
"name": "minimap-pigments", | |
"version": "0.2.2" | |
}, | |
{ | |
"name": "monokai", | |
"version": "0.18.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "monokai-soda", | |
"version": "0.5.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "monokai-soft", | |
"version": "0.2.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "native-ui", | |
"version": "0.19.1", | |
"theme": "ui" | |
}, | |
{ | |
"name": "neutron-ui", | |
"version": "0.4.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "node-debugger", | |
"version": "1.9.2" | |
}, | |
{ | |
"name": "nodejs-snippets", | |
"version": "2.0.2" | |
}, | |
{ | |
"name": "notifications", | |
"version": "0.65.1" | |
}, | |
{ | |
"name": "nucleus-dark-ui", | |
"version": "0.10.19", | |
"theme": "ui" | |
}, | |
{ | |
"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-in-browser", | |
"version": "0.4.7" | |
}, | |
{ | |
"name": "open-on-github", | |
"version": "1.2.1" | |
}, | |
{ | |
"name": "open-recent", | |
"version": "5.0.0" | |
}, | |
{ | |
"name": "package-generator", | |
"version": "1.0.1" | |
}, | |
{ | |
"name": "peacocks-in-space-syntax", | |
"version": "0.5.3", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "php-cs-fixer", | |
"version": "4.1.0" | |
}, | |
{ | |
"name": "pigments", | |
"version": "0.37.0" | |
}, | |
{ | |
"name": "predawn-ui", | |
"version": "1.0.4", | |
"theme": "ui" | |
}, | |
{ | |
"name": "rails-snippets", | |
"version": "2.10.1" | |
}, | |
{ | |
"name": "railscast", | |
"version": "2.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "railscast-theme", | |
"version": "0.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "react", | |
"version": "0.16.2" | |
}, | |
{ | |
"name": "react-es6-snippets", | |
"version": "0.3.0" | |
}, | |
{ | |
"name": "react-snippets", | |
"version": "0.5.0" | |
}, | |
{ | |
"name": "remote-edit", | |
"version": "1.8.24" | |
}, | |
{ | |
"name": "retro-gruvbox", | |
"version": "1.0.4", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "sepia-syntax", | |
"version": "1.0.8", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "settings-view", | |
"version": "0.243.1" | |
}, | |
{ | |
"name": "slim-dark-ui", | |
"version": "0.12.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "slime", | |
"version": "1.6.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "smart-tag-cycle", | |
"version": "0.2.0" | |
}, | |
{ | |
"name": "snippets", | |
"version": "1.0.4" | |
}, | |
{ | |
"name": "soda-light-ui", | |
"version": "0.2.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "solarized-dark-syntax", | |
"version": "1.0.5", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "solarized-light-syntax", | |
"version": "1.0.5", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "spacegray-dark-ui", | |
"version": "0.12.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "spacegray-eighties-ui", | |
"version": "1.2.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "spacegray-monokai-ui", | |
"version": "1.0.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "spacegray-peacock-ui", | |
"version": "1.0.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "spell-check", | |
"version": "0.68.4" | |
}, | |
{ | |
"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.8.1" | |
}, | |
{ | |
"name": "tabs", | |
"version": "0.103.0" | |
}, | |
{ | |
"name": "tango-syntax", | |
"version": "0.4.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "timecop", | |
"version": "0.33.2" | |
}, | |
{ | |
"name": "todo-show", | |
"version": "1.8.0" | |
}, | |
{ | |
"name": "tomorrow", | |
"version": "1.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "tool-bar", | |
"version": "1.0.1" | |
}, | |
{ | |
"name": "tool-bar-almighty", | |
"version": "0.8.1" | |
}, | |
{ | |
"name": "tool-bar-atom", | |
"version": "1.7.0" | |
}, | |
{ | |
"name": "travis-ci-status", | |
"version": "1.3.0" | |
}, | |
{ | |
"name": "tree-view", | |
"version": "0.210.0" | |
}, | |
{ | |
"name": "turbo-javascript", | |
"version": "1.4.0" | |
}, | |
{ | |
"name": "twilight", | |
"version": "0.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "twilight-syntax-spacegray-eighties", | |
"version": "0.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "twilight-syntax-spacegray-ui", | |
"version": "0.4.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "unity-dark-ui", | |
"version": "2.0.9", | |
"theme": "ui" | |
}, | |
{ | |
"name": "unity-ui", | |
"version": "2.1.8", | |
"theme": "ui" | |
}, | |
{ | |
"name": "update-package-dependencies", | |
"version": "0.10.0" | |
}, | |
{ | |
"name": "welcome", | |
"version": "0.35.1" | |
}, | |
{ | |
"name": "whitespace", | |
"version": "0.35.0" | |
}, | |
{ | |
"name": "word-jumper", | |
"version": "0.3.0" | |
}, | |
{ | |
"name": "wordpress-api", | |
"version": "1.2.2" | |
}, | |
{ | |
"name": "wrap-guide", | |
"version": "0.38.2" | |
}, | |
{ | |
"name": "yosemate-ui", | |
"version": "0.7.1", | |
"theme": "ui" | |
}, | |
{ | |
"name": "you-complete-me", | |
"version": "0.7.11" | |
}, | |
{ | |
"name": "zenburn", | |
"version": "3.0.0", | |
"theme": "syntax" | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Termrk": {}, | |
"atom-beautify": { | |
"general": { | |
"_analyticsUserId": "b229df7a-5f41-44e2-98fb-ba6d24ce61d6" | |
} | |
}, | |
"atom-color-highlight": {}, | |
"atom-material-ui": { | |
"colors": { | |
"abaseColor": "#e7aa4b", | |
"accentColor": "#5093fc", | |
"genAccent": true | |
}, | |
"fonts": { | |
"fontSize": 14 | |
}, | |
"tabs": { | |
"compactTabs": true | |
}, | |
"treeView": { | |
"compactList": true | |
}, | |
"ui": { | |
"panelContrast": true, | |
"panelShadows": true | |
} | |
}, | |
"atom-terminal": { | |
"app": "iTerm2.app" | |
}, | |
"atom-terminal-panel": { | |
"logConsole": true | |
}, | |
"atom-ternjs": { | |
"useSnippets": true, | |
"useSnippetsAndFunction": true | |
}, | |
"atom-typescript": {}, | |
"autoclose-html": { | |
"forceInline": [ | |
"div", | |
"li", | |
"ul", | |
"ol" | |
], | |
"neverClose": [ | |
"hr", | |
"br", | |
"img", | |
"input", | |
"h1", | |
"h2", | |
"h3", | |
"h4", | |
"h5", | |
"h6", | |
"td", | |
"tr", | |
"th" | |
] | |
}, | |
"browser-plus": {}, | |
"core": { | |
"allowPendingPaneItems": false, | |
"disabledPackages": [ | |
"atom-color-highlight", | |
"minimap-autohide", | |
"minimap-color-highlight", | |
"linter-jscs", | |
"tool-bar-almighty", | |
"remote-edit", | |
"linter-ruby", | |
"autocomplete-ruby" | |
], | |
"excludeVcsIgnoredPaths": false, | |
"followSymlinks": false, | |
"openEmptyEditorOnStart": false, | |
"packagesWithKeymapsDisabled": [ | |
"script" | |
], | |
"telemetryConsent": "limited", | |
"themes": [ | |
"atom-material-ui", | |
"one-dark-syntax" | |
], | |
"useCustomTitleBar": true | |
}, | |
"custom-title": { | |
"template": "<%= fileName %><% if (projectPath) { %> - <%= fileInProject %> - <%= relativeFilePath %><% if (gitHead) { %> [<%= gitHead %>]<% } %><% } %>" | |
}, | |
"editor": { | |
"fontFamily": "Menlo", | |
"fontSize": 13, | |
"invisibles": {}, | |
"lineHeight": 1.6, | |
"preferredLineLength": 117, | |
"scrollPastEnd": true, | |
"scrollSensitivity": 60, | |
"showIndentGuide": true, | |
"softTabs": false, | |
"softWrap": true | |
}, | |
"emmet": { | |
"useEmmetComments": true | |
}, | |
"exception-reporting": { | |
"userId": "c281bf03-6b5e-f5e0-67cf-02fd69cf8144" | |
}, | |
"filetype-color": { | |
"enabled": "false" | |
}, | |
"genesis-ui": { | |
"distractionFree": { | |
"hideBottom": false, | |
"hideSpotified": true | |
} | |
}, | |
"git-plus": { | |
"general": { | |
"_analyticsUserId": "f79adae7-1703-48fd-afcc-6976ed564fd5" | |
} | |
}, | |
"isotope-ui": { | |
"customBackgroundColorPicker": "#333742", | |
"minimalMode": true | |
}, | |
"linter": { | |
"errorPanelHeight": 287, | |
"showErrorPanel": false, | |
"showErrorTabLine": true, | |
"statusIconPosition": "Right" | |
}, | |
"linter-htmlhint": {}, | |
"linter-jscs": {}, | |
"livestyle-atom": { | |
"analyzer": { | |
"notify": false, | |
"notifyCampaign": false | |
} | |
}, | |
"metrics": { | |
"userId": "fa09337dffe1c698146a78d2b11209460c64712f" | |
}, | |
"minimap": { | |
"independentMinimapScroll": true, | |
"plugins": { | |
"find-and-replace": true, | |
"find-and-replaceDecorationsZIndex": 0, | |
"highlight-selected": true, | |
"highlight-selectedDecorationsZIndex": 0, | |
"linter": false, | |
"linterDecorationsZIndex": 0, | |
"minimap-autohide": true, | |
"pigments": true, | |
"pigmentsDecorationsZIndex": 0 | |
} | |
}, | |
"one-dark-ui": {}, | |
"open-in": { | |
"applications": "Default:Firefox,FirefoxDeveloperEdition" | |
}, | |
"pigments": { | |
"extendAutocompleteToVariables": true | |
}, | |
"spell-check": {}, | |
"sync-settings": {}, | |
"terminal-panel": { | |
"logConsole": true | |
}, | |
"terminal-plus": { | |
"ansiColors": { | |
"normal": { | |
"black": "#3a3737" | |
} | |
}, | |
"core": { | |
"mapTerminalsTo": "Folder", | |
"mapTerminalsToAutoOpen": true | |
}, | |
"style": { | |
"fontFamily": "menlo", | |
"fontSize": "12" | |
}, | |
"toggles": { | |
"autoClose": true | |
} | |
}, | |
"todo-show": { | |
"showInTable": [ | |
"Text", | |
"Type", | |
"Path", | |
"File", | |
"Project" | |
], | |
"sortAscending": false, | |
"sortBy": "File" | |
}, | |
"tool-bar": { | |
"iconSize": "12px", | |
"position": "Left" | |
}, | |
"tool-bar-almighty": {}, | |
"webbox-color": {}, | |
"welcome": { | |
"showOnStartup": false | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' | |
# | |
# This file uses CoffeeScript Object Notation (CSON). | |
# If you are unfamiliar with CSON, you can read more about it here: | |
# https://github.com/bevry/cson#what-is-cson | |
'*, .text.html.basic': | |
'Personal Font Awesome CDN': | |
'prefix': 'facdn' | |
'body': '<script src="https://use.fontawesome.com/f403a1a535.js"></script>' | |
'Section comment': | |
'prefix': 'sec' | |
'body': """ | |
<!--%%• $1 %%•--> | |
$2 | |
<!--%%• /$1 %%•--> | |
""" | |
'Break comment': | |
'prefix': 'break' | |
'body': '<!-- %%• $1 •%% -->' | |
'Placehold.it': | |
'prefix': 'placehold' | |
'body': """ | |
http://www.placehold.it/122$1x122$1 | |
""" | |
'Image tag': | |
'prefix': 'img' | |
'body': '<img src="$1" alt="$2">' | |
'Patient center img': | |
'prefix': 'agaimg' | |
'body': '<img src="$1" style="max-width:$2; float:$3; margin:5px;">' | |
'Lorem ipsum text': | |
'prefix': 'text' | |
'body': """ | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. | |
""" | |
'CSS block comment': | |
'prefix': 'blocks' | |
'body': """ | |
/*---------------------------------------- | |
$1 | |
----------------------------------------*/ | |
""" | |
'HTML block comment': | |
'prefix': 'block' | |
'body': """ | |
<!--***************************************** | |
$1 | |
*********************************************--> | |
""" | |
'.source.css': | |
'Comment': | |
'prefix': 'break' | |
'body': '/* ##- $1 -## */' | |
'.source.js, .source.ts': | |
'console.log();': | |
'prefix': 'con' | |
'body': 'console.log($1);' | |
'document.write();': | |
'prefix': 'doc' | |
'body': 'document.write($1);' | |
'While loop': | |
'prefix': 'while' | |
'body': """ | |
var counter = 0; | |
while ( counter < 10 ) { | |
console.log(counter); | |
counter += 1; | |
} | |
""" | |
'${inter}': | |
'prefix': 'in' | |
'body': "${$1}" | |
'Comment': | |
'prefix': 'break' | |
'body': '/* ##- $1 -## */' | |
'jQuery selector': | |
'prefix': 'jqs' | |
'body': "$('$1').$2('$3');" | |
'jQuery Function': | |
'prefix': 'jfun' | |
'body': """ | |
$('$1').click$2(function(){ | |
$('$3').$4(''); | |
}); | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed. | |
* | |
* If you are unfamiliar with LESS, you can read more about it here: | |
* http://www.lesscss.org | |
*/ | |
@font-size: 12px; | |
.tree-view { | |
/* background-color: #2e393b; */ | |
/* background-color: #2f373a; */ | |
/* background-color: #3d3d47; */ | |
/* background-color: #292929; */ | |
/* %%• ONE •%% */ | |
/* background-color: #22252c; */ | |
background: rgba(0, 0, 0, 0.3); /*can be anything, of course*/ | |
} | |
//Change UI theme font size | |
/* html, | |
body, | |
.tree-view, | |
.tooltip, | |
.tab-bar .tab, | |
.find-and-replace .find-meta-container, | |
atom-text-editor[mini], | |
.btn, | |
.status-bar, | |
.list-tree li.list-nested-item > .list-item { | |
font-size: @font-size; | |
} | |
*/ | |
atom-text-editor { | |
/* background-color: #2e2e2e; */ | |
} | |
/* title bar */ | |
.title-bar .title { | |
flex: 0 1 auto; | |
overflow: hidden; | |
white-space: nowrap; | |
text-overflow: ellipsis; | |
color: #9096a2; | |
} | |
atom-text-editor::shadow { | |
span.markup.underline.link.hyperlink { | |
color: #c678dd; | |
/* color: #87dafc; */ | |
/* color: #5f8eb3; */ | |
/* color: #fb4934; */ //Gruvbox | |
/* color: #fe8019; */ | |
/* color:#C14200; */ | |
/* color: #738F00; */ | |
/* color: #FFBF00; */ | |
/* color: #666666; */ | |
/* color:#7d695e; */ | |
/* color: #97566f; */ | |
/* color: #e5b257; */ | |
/* font-weight: bold; */ | |
text-decoration: underline; | |
font-style: italic; | |
} | |
} | |
/* ##- Moves notifications to bottom right -## */ | |
atom-notifications { | |
top: auto; | |
} | |
atom-text-editor .cursor { | |
} | |
/* ######- for Isotope UI theme -###### */ | |
html, body { | |
font-size: 11px; | |
} | |
/* ##- Soda styling -## */ | |
/* .terminal-plus .xterm { | |
background-color: #282c34; | |
color: #cccccc; | |
::selection { | |
background-color: ; | |
} | |
.terminal-cursor { | |
background-color: ; | |
} | |
} | |
.tab-bar { | |
height: 31px; | |
padding-left: 0; | |
.tab { | |
-webkit-transform: none; | |
border-top: 0; | |
margin-left: 5px; | |
border-top-right-radius: 0px; | |
top: 0; | |
&.active:before { | |
height: 28px; | |
} | |
&:before { | |
-webkit-transform: none; | |
border-top: 0; | |
border-left: 0; | |
border-top-left-radius: 0px; | |
height: 28px; | |
left: -10px; | |
width: 10px; | |
} | |
.title, .close-icon { | |
-webkit-transform: none; | |
} | |
} | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment