-
-
Save VincentSmedinga/715547 to your computer and use it in GitHub Desktop.
automatic update by http://atom.io/packages/sync-settings
This file contains hidden or 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
<!DOCTYPE html> | |
<!-- Helpful things to keep in your <head/> | |
// Brian Blakely, 360i | |
// http://twitter.com/brianblakely/ | |
--> | |
<head> | |
<!-- According to Heather Champ, former community manager at flickr, | |
you should not allow search engines to index your "Contact Us" | |
or "Complaints" page if you value your sanity. This is an HTML- | |
centric way of achieving that. --> | |
<meta name="robots" content="noindex" /> | |
<!-- Suppress IE6's pop-up-on-mouseover toolbar for images, that can | |
interfere with certain designs. --> | |
<meta http-equiv="imagetoolbar" content="false" /> | |
<!-- IE9 Pinned Site Settings! | |
Documentation: http://msdn.microsoft.com/en-ca/library/gg131029(VS.85).aspx | |
See the documentation for JavaScript APIs, as well. --> | |
<!-- Pinned site name, as Windows sees it - this will be the page title | |
by default, unless you include this rule. --> | |
<meta name="application-name" content="Sample Title" /> | |
<!-- Pinned shortcuts also get a tooltip - this is it. --> | |
<meta name="msapplication-tooltip" content="A description of what this site does." /> | |
<!-- If the site should go to a specific URL when it is pinned (such as | |
the homepage), enter it here. | |
One idea is to send it to a special URL so you can track # of pinned users, | |
like so: http://www.example.com/index.html?pinned=true --> | |
<meta name="msapplication-starturl" content="" /> | |
<!-- IE9 will automatically use the overall color of your site's favicon to | |
shade its browser buttons. UNLESS you give it another color here. | |
Only use named colors ("red") or hex colors ("#f00"). --> | |
<meta name="msapplication-navbutton-color" content=""/> | |
<!-- If the site should open at a certain window size once | |
pinned, you can specify the dimensions here. | |
It only supports static pixel dimensions. 800x600 minimum. --> | |
<meta name="msapplication-window" content="width=800;height=600"/> | |
<!-- Define Jump List tasks that will appear when the pinned site's | |
icon gets a right-click. Each "task" goes to the specified URL, | |
and gets its own mini icon (essentially a favicon, a 16x16 .ICO). --> | |
<meta name="msapplication-task" content="name=Task 1;action-uri=http://host/Page1.html;icon-uri=http://host/icon1.ico"/> | |
<meta name="msapplication-task" content="name=Task 2;action-uri=http://microsoft.com/Page2.html;icon-uri=http://host/icon2.ico"/> | |
<!-- Facebook and others will use the following data to represent your site | |
when it is shared (<meta>s are strictly for Facebook). | |
Facebook documentation (includes info on sharing more specific media types): http://developers.facebook.com/docs/share --> | |
<meta property="og:title" content="" /> | |
<meta property="og:description" content="" /> | |
<meta property="og:image" content="" /> | |
<link rel="image_src" href="" /> | |
<!-- Signal to search engines and others "Use this URL for this page!" | |
Useful when URLs are dynamically generated. --> | |
<link rel="canonical" href="" /> | |
<!-- Signal to the world "This is the shortURL for this page!" | |
Poorly supported at this time. | |
http://microformats.org/wiki/rel-shortlink --> | |
<link rel="shortlink" href="" /> | |
<!-- Sites with search functionality should be strongly considered for a | |
browser search plugin. | |
How to make a browser search plugin: | |
http://www.google.com/search?ie=UTF-8&q=how+to+make+browser+search+plugin --> | |
<link rel="search" title="" type="application/opensearchdescription+xml" href="" /> | |
</head> | |
<body> | |
<!-- ... --> | |
<!-- Let's help Mother Nature and link to a local copy of jQuery | |
until our project is ready for launch. --> | |
<!--script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script--> | |
<script src="js/jquery-1.4.2.js"></script> | |
<!-- jQuery Lint for the performance-tweaking stages of your project. | |
Notifies of inefficient selectors and other ego-breaking things. --> | |
<script src="js/jquery.lint.js"></script> | |
</body> |
This file contains hidden or 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 log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> | |
# console.log "Saved! #{editor.getPath()}" | |
# remove menus and context menus for packages | |
# specified in the packages array | |
# https://discuss.atom.io/t/how-to-remove-items-from-menus-of-existing-packages/16329 | |
packages = ['xml-formatter'] | |
for pkg in packages | |
pkg = atom.packages.getLoadedPackage pkg | |
continue unless pkg? | |
{menus} = pkg | |
for menu in menus | |
mainMenu = menu[1].menu | |
atom.menu.remove mainMenu | |
contextMenu = menu[1]['context-menu'] | |
for selector, items of contextMenu | |
for itemSet, i in atom.contextMenu.itemSets | |
continue unless itemSet.items is items | |
atom.contextMenu.itemSets.splice i, 1 | |
break |
This file contains hidden or 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 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. | |
# | |
# 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: | |
# * https://atom.io/docs/latest/using-atom-basic-customization#customizing-key-bindings | |
# * https://atom.io/docs/latest/behind-atom-keymaps-in-depth | |
# | |
# 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 |
This file contains hidden or 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": "about", | |
"version": "1.5.2" | |
}, | |
{ | |
"name": "archive-view", | |
"version": "0.61.1" | |
}, | |
{ | |
"name": "atom-beautify", | |
"version": "0.29.9" | |
}, | |
{ | |
"name": "atom-dark-syntax", | |
"version": "0.27.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-dark-ui", | |
"version": "0.51.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-light-syntax", | |
"version": "0.28.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-light-ui", | |
"version": "0.43.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-material-syntax", | |
"version": "0.4.6", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-material-ui", | |
"version": "1.2.13", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-ternjs", | |
"version": "0.14.2" | |
}, | |
{ | |
"name": "atom-typescript", | |
"version": "10.0.0" | |
}, | |
{ | |
"name": "auto-update-packages", | |
"version": "1.0.1" | |
}, | |
{ | |
"name": "autocomplete-atom-api", | |
"version": "0.10.0" | |
}, | |
{ | |
"name": "autocomplete-css", | |
"version": "0.11.1" | |
}, | |
{ | |
"name": "autocomplete-html", | |
"version": "0.7.2" | |
}, | |
{ | |
"name": "autocomplete-modules", | |
"version": "1.5.2" | |
}, | |
{ | |
"name": "autocomplete-paths", | |
"version": "1.0.2" | |
}, | |
{ | |
"name": "autocomplete-plus", | |
"version": "2.31.0" | |
}, | |
{ | |
"name": "autocomplete-sass", | |
"version": "0.1.0" | |
}, | |
{ | |
"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.0" | |
}, | |
{ | |
"name": "base16-tomorrow-dark-theme", | |
"version": "1.1.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "base16-tomorrow-light-theme", | |
"version": "1.1.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "bookmarks", | |
"version": "0.41.0" | |
}, | |
{ | |
"name": "bracket-matcher", | |
"version": "0.82.1" | |
}, | |
{ | |
"name": "cobalt2-syntax", | |
"version": "0.3.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "command-palette", | |
"version": "0.38.0" | |
}, | |
{ | |
"name": "deprecation-cop", | |
"version": "0.54.1" | |
}, | |
{ | |
"name": "dev-live-reload", | |
"version": "0.47.0" | |
}, | |
{ | |
"name": "docblockr", | |
"version": "0.7.3" | |
}, | |
{ | |
"name": "duotone-dark-earth-syntax", | |
"version": "1.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "duotone-dark-forest-syntax", | |
"version": "1.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "duotone-dark-sea-syntax", | |
"version": "1.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "duotone-dark-space-syntax", | |
"version": "1.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "duotone-dark-syntax", | |
"version": "1.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "duotone-light-syntax", | |
"version": "1.0.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "encoding-selector", | |
"version": "0.22.0" | |
}, | |
{ | |
"name": "exception-reporting", | |
"version": "0.38.1" | |
}, | |
{ | |
"name": "file-icons", | |
"version": "1.7.16" | |
}, | |
{ | |
"name": "find-and-replace", | |
"version": "0.198.0" | |
}, | |
{ | |
"name": "fuzzy-finder", | |
"version": "1.2.0" | |
}, | |
{ | |
"name": "git-diff", | |
"version": "1.0.1" | |
}, | |
{ | |
"name": "git-plus", | |
"version": "5.16.2" | |
}, | |
{ | |
"name": "go-to-line", | |
"version": "0.31.0" | |
}, | |
{ | |
"name": "grammar-selector", | |
"version": "0.48.1" | |
}, | |
{ | |
"name": "image-view", | |
"version": "0.58.0" | |
}, | |
{ | |
"name": "incompatible-packages", | |
"version": "0.26.1" | |
}, | |
{ | |
"name": "keybinding-resolver", | |
"version": "0.35.0" | |
}, | |
{ | |
"name": "language-c", | |
"version": "0.52.1" | |
}, | |
{ | |
"name": "language-clojure", | |
"version": "0.21.0" | |
}, | |
{ | |
"name": "language-coffee-script", | |
"version": "0.47.0" | |
}, | |
{ | |
"name": "language-csharp", | |
"version": "0.12.1" | |
}, | |
{ | |
"name": "language-css", | |
"version": "0.36.2" | |
}, | |
{ | |
"name": "language-gfm", | |
"version": "0.86.0" | |
}, | |
{ | |
"name": "language-git", | |
"version": "0.13.0" | |
}, | |
{ | |
"name": "language-go", | |
"version": "0.42.0" | |
}, | |
{ | |
"name": "language-html", | |
"version": "0.44.1" | |
}, | |
{ | |
"name": "language-hyperlink", | |
"version": "0.16.0" | |
}, | |
{ | |
"name": "language-jade", | |
"version": "0.7.1" | |
}, | |
{ | |
"name": "language-java", | |
"version": "0.22.0" | |
}, | |
{ | |
"name": "language-javascript", | |
"version": "0.119.0" | |
}, | |
{ | |
"name": "language-json", | |
"version": "0.18.0" | |
}, | |
{ | |
"name": "language-less", | |
"version": "0.29.3" | |
}, | |
{ | |
"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.35.0" | |
}, | |
{ | |
"name": "language-php", | |
"version": "0.37.0" | |
}, | |
{ | |
"name": "language-property-list", | |
"version": "0.8.0" | |
}, | |
{ | |
"name": "language-python", | |
"version": "0.45.0" | |
}, | |
{ | |
"name": "language-ruby", | |
"version": "0.68.5" | |
}, | |
{ | |
"name": "language-ruby-on-rails", | |
"version": "0.25.0" | |
}, | |
{ | |
"name": "language-sass", | |
"version": "0.52.0" | |
}, | |
{ | |
"name": "language-shellscript", | |
"version": "0.22.3" | |
}, | |
{ | |
"name": "language-source", | |
"version": "0.9.0" | |
}, | |
{ | |
"name": "language-sql", | |
"version": "0.21.1" | |
}, | |
{ | |
"name": "language-svg", | |
"version": "0.9.0" | |
}, | |
{ | |
"name": "language-text", | |
"version": "0.7.1" | |
}, | |
{ | |
"name": "language-todo", | |
"version": "0.28.0" | |
}, | |
{ | |
"name": "language-toml", | |
"version": "0.18.0" | |
}, | |
{ | |
"name": "language-xml", | |
"version": "0.34.8" | |
}, | |
{ | |
"name": "language-yaml", | |
"version": "0.26.0" | |
}, | |
{ | |
"name": "line-ending-selector", | |
"version": "0.5.0" | |
}, | |
{ | |
"name": "link", | |
"version": "0.31.1" | |
}, | |
{ | |
"name": "linter", | |
"version": "1.11.14" | |
}, | |
{ | |
"name": "linter-stylelint", | |
"version": "2.17.0" | |
}, | |
{ | |
"name": "markdown-preview", | |
"version": "0.158.0" | |
}, | |
{ | |
"name": "merge-conflicts", | |
"version": "1.4.4" | |
}, | |
{ | |
"name": "metrics", | |
"version": "0.53.1" | |
}, | |
{ | |
"name": "notifications", | |
"version": "0.64.1" | |
}, | |
{ | |
"name": "one-dark-syntax", | |
"version": "1.2.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "one-dark-ui", | |
"version": "1.3.2", | |
"theme": "ui" | |
}, | |
{ | |
"name": "one-light-syntax", | |
"version": "1.2.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "one-light-ui", | |
"version": "1.3.2", | |
"theme": "ui" | |
}, | |
{ | |
"name": "package-generator", | |
"version": "1.0.0" | |
}, | |
{ | |
"name": "pretty-json", | |
"version": "1.4.1" | |
}, | |
{ | |
"name": "project-manager", | |
"version": "2.9.7" | |
}, | |
{ | |
"name": "settings-view", | |
"version": "0.238.0" | |
}, | |
{ | |
"name": "snippets", | |
"version": "1.0.2" | |
}, | |
{ | |
"name": "solarized-dark-syntax", | |
"version": "1.0.2", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "solarized-light-syntax", | |
"version": "1.0.2", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "spell-check", | |
"version": "0.67.1" | |
}, | |
{ | |
"name": "status-bar", | |
"version": "1.3.1" | |
}, | |
{ | |
"name": "styleguide", | |
"version": "0.46.0" | |
}, | |
{ | |
"name": "svg-preview", | |
"version": "0.7.4" | |
}, | |
{ | |
"name": "svgo", | |
"version": "2.1.2" | |
}, | |
{ | |
"name": "symbols-view", | |
"version": "0.113.0" | |
}, | |
{ | |
"name": "sync-settings", | |
"version": "0.7.2" | |
}, | |
{ | |
"name": "tabs", | |
"version": "0.98.0" | |
}, | |
{ | |
"name": "timecop", | |
"version": "0.33.1" | |
}, | |
{ | |
"name": "tree-view", | |
"version": "0.208.0" | |
}, | |
{ | |
"name": "update-package-dependencies", | |
"version": "0.10.0" | |
}, | |
{ | |
"name": "welcome", | |
"version": "0.34.0" | |
}, | |
{ | |
"name": "whitespace", | |
"version": "0.32.2" | |
}, | |
{ | |
"name": "wrap-guide", | |
"version": "0.38.1" | |
}, | |
{ | |
"name": "xml-formatter", | |
"version": "0.10.0" | |
} | |
] |
This file contains hidden or 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-beautify": { | |
"css": { | |
"newline_between_rules": true, | |
"no_lead_zero": true, | |
"preserve_newlines": true, | |
"selector_separator_newline": true, | |
"wrap_line_length": 120 | |
}, | |
"general": { | |
"_analyticsUserId": "d4f3760c-823a-4aed-b994-a538d3c88e59" | |
} | |
}, | |
"atom-ternjs": { | |
"inlineFnCompletion": false | |
}, | |
"autocomplete-modules": {}, | |
"autocomplete-plus": { | |
"enableBuiltinProvider": false | |
}, | |
"autosave": { | |
"enabled": true | |
}, | |
"core": { | |
"audioBeep": false, | |
"disabledPackages": [ | |
"open-on-github", | |
"pigments", | |
"linter-scss-lint", | |
"linter-eslint", | |
"linter-xmllint" | |
], | |
"ignoredNames": [ | |
".bowerrc", | |
".git", | |
".gitmodules", | |
"node_modules", | |
"platform", | |
"*.DS_Store", | |
"*.idea", | |
"*.log" | |
], | |
"projectHome": "/Users/VincentSmedinga/Projects/FontoXML", | |
"themes": [ | |
"atom-material-ui", | |
"atom-material-syntax" | |
] | |
}, | |
"docblockr": {}, | |
"editor": { | |
"fontFamily": "Fira Mono", | |
"fontSize": 16, | |
"invisibles": { | |
"eol": "¶", | |
"space": "•", | |
"tab": "⟶" | |
}, | |
"preferredLineLength": 120, | |
"showInvisibles": true, | |
"softWrapHangingIndent": 8, | |
"tabLength": 4, | |
"tabType": "hard", | |
"zoomFontWhenCtrlScrolling": true | |
}, | |
"emmet-simplified": {}, | |
"exception-reporting": { | |
"userId": "3eaea76a-fcca-08da-af38-9c7f28c6d422" | |
}, | |
"file-icons": { | |
"forceShow": true, | |
"onChanges": true | |
}, | |
"fuzzy-finder": { | |
"ignoredNames": [ | |
".*", | |
"*.log", | |
"*.sublime-*", | |
"**/node_modules/*" | |
] | |
}, | |
"git-diff": { | |
"showIconsInEditorGutter": true | |
}, | |
"highlight-selected": {}, | |
"linter": { | |
"showErrorPanel": false | |
}, | |
"linter-eslint": { | |
"globalNodePath": "/usr/local/", | |
"useGlobalEslint": true | |
}, | |
"linter-scss-lint": { | |
"executablePath": "/usr/local/bin/scss-lint" | |
}, | |
"linter-xmllint": {}, | |
"merge-conflicts": {}, | |
"project-manager": {}, | |
"sync-settings": {}, | |
"tree-view": { | |
"hideIgnoredNames": true, | |
"hideVcsIgnoredFiles": true, | |
"squashDirectoryNames": false | |
}, | |
"welcome": { | |
"showOnStartup": false | |
}, | |
"whitespace": { | |
"ignoreWhitespaceOnCurrentLine": false | |
}, | |
"xml-formatter": {} | |
} |
This file contains hidden or 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 |
This file contains hidden or 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 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 | |
*/ | |
.tree-view-resizer { | |
width: 100vw / 5; | |
} | |
atom-text-editor .invisible-character, | |
:host .invisible-character { | |
color: hotpink !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment