db1996
10/9/2017 - 1:01 PM

automatic update by http://atom.io/packages/sync-settings

/*
 * 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;
}
.line, .line-number, .cursor {
  line-height: 2.4;
}
# 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':
  'JQuery post':
    'prefix': 'post'
    'body': """
$.post("${1:include/}$2",{
	$3
}, function(response,status){
    ${4:var data = JSON.parse(response);}
    $5
});
	"""
  'JQuery click':
    'prefix': 'clickjqu'
    'body': """
	$('body').on('click', '.$1', function(){
		$2
	});
	"""

'.text.html.php':
  'include file':
    'prefix': 'inc'
    'body': "include '$1';$2"
  'Self made php dump':
    'prefix': 'dmp'
    'body': "dump($$1);"
  'prepared statement w result':
    'prefix': 'stmtr'
    'body': """
	$stmt = $con->prepare($sql);
	$stmt->bind_param('$1', $2);
	$stmt->execute();
	$result = $stmt->get_result();
	while ($row = $result->fetch_array(MYSQLI_ASSOC))
	{
	  $${3:resultArray}[] = $row;
	}
	$stmt->close();
	"""
  'prepared statement w/o result':
    'prefix': 'stmt'
    'body': """
	$stmt = $con->prepare($sql);
	$stmt->bind_param('$1', $2);
	$stmt->execute();
	$stmt->close();
	"""
  'prepared statement incl. insert_id':
    'prefix': 'stmti'
    'body': """
	$stmt = $con->prepare($sql);
	$stmt->bind_param("s", $name);
	$stmt->execute();
	$insert_id = $stmt->insert_id;
	$stmt->close();
	"""
  'Mysql Delete Statement':
    'prefix': 'deletesql'
    'body': """
	$sql = "DELETE FROM `${1:table_name}` WHERE `id`=?";
	"""
  'Mysql Update Statement':
    'prefix': 'updatesql'
    'body': """
	$sql = "UPDATE ${1:table_name} SET ${2:column_name = ?} WHERE id = ?";
	"""
  'Mysql Select Statement':
    'prefix': 'selectsql'
    'body': """
	$sql = "SELECT * FROM ${1:table_name} WHERE ${2:column_name} =?";
	"""
  'Mysql Insert Statement':
    'prefix': 'insertsql'
    'body': """
	$sql = "INSERT INTO ${1:table_name} (${2:columns})
    VALUES (?)";
	"""
  'Mustache':
    'prefix': 'mst'
    'body': """
<template id="$1">
	{{#.}}
	$2
	{{/.}}
</template>
	"""

	
{
	"activate-power-mode": {
		"comboMode": {
			"activationThreshold": [
				"10",
				"50",
				"100",
				"200",
				"500"
			],
			"enabled": false,
			"multiplier": false
		},
		"plugins": {
			"playAudio": true,
			"screenShake": true
		},
		"screenShake": {
			"maxIntensity": 2
		}
	},
	"atom-package-deps": {
		"ignored": [
			"prettier-atom"
		]
	},
	"autoprefixer": {
		"runOnSave": true
	},
	"core": {
		"disabledPackages": [
			"keybinding-resolver",
			"nms-color-bracket",
			"language-blade",
			"atom-ungit"
		],
		"packagesWithKeymapsDisabled": [
			"git-time-machine",
			"atom-wrap-in-tag"
		],
		"telemetryConsent": "no",
		"uriHandlerRegistration": "always"
	},
	"double-tag": {
		"allowEndTagSync": true
	},
	"editor": {
		"fontSize": 11,
		"showIndentGuide": true,
		"softWrap": true,
		"tabLength": 4
	},
	"emmet": {
		"extensionsPath": "C:\\emmet"
	},
	"exception-reporting": {
		"userId": "3fa9ec6a-ab22-46b6-9411-b4c7a0145bda"
	},
	"ftp-remote-edit": {
		"config": "4f56424d63d0faa6cb30d8ba7157330b6fabe551154fc6b030d1d44b2aa6d163dab72877b7b5918d26d2641ffd73c222459993d01a8ce3fcbf32f24959c53858a96c3a63a8b4185e7c28f5886a4474d70c3a1910634cb46c0ac6d2d299ad5bcff221dc2d2f04e0bc544ef4c79ef0dde1e40d8752a04a1dee5a9098c8aeefa3013658c467789a4d410d590480e7d3db20f7b9458168cc1c499d71a64cb8195827ba138b55016d480c5cbab5f5e9bbc451c4445431d830c777a8d2789f5e11a41387ee421c8ded965e8d90371e0994b2afa3cbbb18b8f77c3b486285b444b26d841c4eecb1ddf271fc193b0bea24c85be8b099c054597ed9fee2fa59aa469654edd6bd4c98a05500121bad27c44f8760fdae7e72f1449ba8d8e47ca1823413b457b11df05d4cf3f04ee08da1e05807f497a00e09436575775f8b662e35b21cf4fbc5254701321f6141f0df66bc15773e5322c02ec2c29f4722563473fbfc2a5ca8affbd44863c9d083787e9b5685fb76822de28eb1bcc4c52673b7f9153753d1e555133879fa2a477cb052b1d5fe878f0ec736a3fd9c618187f0ea1abd9f6d9e73075188cb85a99dd83e936b29c434fa405f14dc00691b4e77994c7017c1ac479552f000cc44d8be27529f8bdff83e7187db391564123d84ea0f46b6e3ba97ea9da06b035cfdf1436f7975d2b9d137152271d521fbe23943dacdd98bd1323cf3b34d2a98da5f642a60f1e440ef6a5a152cb68820bf96140767742fc875162c937b33d367e7e128913e34ac761dced81cc146ff28d7b05d04049060ffd2a077826a3e69600bb41053a82b0f7b580a45ee41214e54838ac62435cee93ddab3a19d477fe71c7061e6bcc05455e5505fb9cb3a66b6fc94fad7a8d90631e9e11f7cedd54ea3496c92bebef8846a411fbf7002587001aac89ce694590ad2cf4829a1dbc2fe47dd5f1ed7e541a28bf2d80bbd40b8730bcd8a4f9816548a474fe11c438377ff34f756da94292d069f726d5cb10a7b29b73ae373e418bb6b1d9613359d9e24633b7d9dd7a110a9c7e1c35159ddef86ce3b37260152fa45d41ef94b016e42063f3ae9215f4c217853f9fdfe77e87955f2287188d7ff799a24fb4be56d9f5f186404eecb3d0d39baaa024f6d569450caddf824c3770444fa4422698f113b21348d84c9a6d11063f24f40d76d7aa1e401dea53944b967033372878c5be04a75b5079d1abc5ed562e952aab8299bf42376bc5479d419d3fea878dabff4cef83c846e6ed26bcd5e8e8e4e6cbc8211de91f70109674d59004a2b7bd1f3039ed17a95a09edd77a538f5c4971d45b654993f2ac947f561aedfdbc33122dfbdb5b0b77384bb500cce4575e577de03acff2a7c920d5dfd65555fdd5f1f415f41d7744f2aa4d74b89974f56bc14c354b3d5505e16dd43d2ec5db10812a8588d728ef684780feba6bc93475dee682b350d5329131acee4505bb08f02228c9797125f88447cea300a209f399af048788a858be7e9416c822216c4f96ab8255bcbb2b14db1b1c773a8e280dfd6ad36fa91e188e5d912a9d07b",
		"password": "67590f4672cffeea8523"
	},
	"git-diff": {
		"showIconsInEditorGutter": true
	},
	"linter-stylelint": {
		"disableWhenNoConfig": false,
		"useStandard": true
	},
	"linter-ui-default": {
		"panelHeight": 300
	},
	"minimap": {
		"plugins": {
			"git-diff": true,
			"git-diffDecorationsZIndex": 0,
			"minimap-quick-highlight": true,
			"minimap-quick-highlightDecorationsZIndex": 0
		}
	},
	"pigments": {
		"markerType": "native-dot"
	},
	"platformio-ide-terminal": {
		"style": {
			"defaultPanelHeight": "180px",
			"fontSize": "15"
		}
	},
	"prettier-atom": {
		"formatOnSaveOptions": {
			"showInStatusBar": true
		},
		"prettierOptions": {
			"singleQuote": true
		}
	},
	"sync-settings": {
		"checkForUpdatedBackup": false
	},
	"terminal-plus": {
		"style": {
			"defaultPanelHeight": "100px"
		}
	},
	"tree-view-git-branch": {
		"location": "top",
		"separator": true
	},
	"welcome": {
		"showOnStartup": false
	}
}
[
	{
		"name": "about",
		"version": "1.10.0"
	},
	{
		"name": "advanced-open-file",
		"version": "0.16.8"
	},
	{
		"name": "archive-view",
		"version": "0.65.1"
	},
	{
		"name": "atom-dark-syntax",
		"version": "0.29.0",
		"theme": "syntax"
	},
	{
		"name": "atom-dark-ui",
		"version": "0.53.2",
		"theme": "ui"
	},
	{
		"name": "atom-light-syntax",
		"version": "0.29.0",
		"theme": "syntax"
	},
	{
		"name": "atom-light-ui",
		"version": "0.46.2",
		"theme": "ui"
	},
	{
		"name": "atom-ungit",
		"version": "0.6.0"
	},
	{
		"name": "auto-indent",
		"version": "0.5.0"
	},
	{
		"name": "autocomplete-atom-api",
		"version": "0.10.7"
	},
	{
		"name": "autocomplete-css",
		"version": "0.17.5"
	},
	{
		"name": "autocomplete-html",
		"version": "0.8.4"
	},
	{
		"name": "autocomplete-plus",
		"version": "2.40.7"
	},
	{
		"name": "autocomplete-snippets",
		"version": "1.12.0"
	},
	{
		"name": "autoflow",
		"version": "0.29.4"
	},
	{
		"name": "autosave",
		"version": "0.24.6"
	},
	{
		"name": "background-tips",
		"version": "0.28.0"
	},
	{
		"name": "base16-tomorrow-dark-theme",
		"version": "1.5.0",
		"theme": "syntax"
	},
	{
		"name": "base16-tomorrow-light-theme",
		"version": "1.5.0",
		"theme": "syntax"
	},
	{
		"name": "blade-snippets",
		"version": "0.2.0"
	},
	{
		"name": "bookmarks",
		"version": "0.45.1"
	},
	{
		"name": "bracket-colorizer",
		"version": "1.2.0"
	},
	{
		"name": "bracket-matcher",
		"version": "0.89.2"
	},
	{
		"name": "busy-signal",
		"version": "1.4.3"
	},
	{
		"name": "command-palette",
		"version": "0.43.5"
	},
	{
		"name": "dalek",
		"version": "0.2.2"
	},
	{
		"name": "deprecation-cop",
		"version": "0.56.9"
	},
	{
		"name": "dev-live-reload",
		"version": "0.48.1"
	},
	{
		"name": "double-tag",
		"version": "1.5.0"
	},
	{
		"name": "emmet",
		"version": "2.4.3"
	},
	{
		"name": "encoding-selector",
		"version": "0.23.9"
	},
	{
		"name": "exception-reporting",
		"version": "0.43.1"
	},
	{
		"name": "file-icons",
		"version": "2.1.24"
	},
	{
		"name": "find-and-replace",
		"version": "0.215.12"
	},
	{
		"name": "ftp-remote-edit",
		"version": "0.12.14"
	},
	{
		"name": "fuzzy-finder",
		"version": "1.8.2"
	},
	{
		"name": "git-diff",
		"version": "1.3.9"
	},
	{
		"name": "github",
		"version": "0.18.3"
	},
	{
		"name": "go-to-line",
		"version": "0.33.0"
	},
	{
		"name": "goto-definition",
		"version": "1.3.4"
	},
	{
		"name": "grammar-selector",
		"version": "0.50.1"
	},
	{
		"name": "image-view",
		"version": "0.63.0"
	},
	{
		"name": "incompatible-packages",
		"version": "0.27.3"
	},
	{
		"name": "intentions",
		"version": "1.1.5"
	},
	{
		"name": "jquery-snippets",
		"version": "11.0.0"
	},
	{
		"name": "keybinding-resolver",
		"version": "0.38.2"
	},
	{
		"name": "language-blade",
		"version": "0.41.2"
	},
	{
		"name": "language-c",
		"version": "0.60.0"
	},
	{
		"name": "language-clojure",
		"version": "0.22.7"
	},
	{
		"name": "language-coffee-script",
		"version": "0.49.3"
	},
	{
		"name": "language-csharp",
		"version": "1.0.4"
	},
	{
		"name": "language-css",
		"version": "0.42.11"
	},
	{
		"name": "language-gfm",
		"version": "0.90.5"
	},
	{
		"name": "language-git",
		"version": "0.19.1"
	},
	{
		"name": "language-go",
		"version": "0.46.0"
	},
	{
		"name": "language-html",
		"version": "0.51.1"
	},
	{
		"name": "language-hyperlink",
		"version": "0.16.3"
	},
	{
		"name": "language-java",
		"version": "0.30.0"
	},
	{
		"name": "language-javascript",
		"version": "0.129.1"
	},
	{
		"name": "language-json",
		"version": "0.19.2"
	},
	{
		"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.44.0"
	},
	{
		"name": "language-property-list",
		"version": "0.9.1"
	},
	{
		"name": "language-python",
		"version": "0.51.2"
	},
	{
		"name": "language-ruby",
		"version": "0.72.2"
	},
	{
		"name": "language-ruby-on-rails",
		"version": "0.25.3"
	},
	{
		"name": "language-sass",
		"version": "0.62.0"
	},
	{
		"name": "language-shellscript",
		"version": "0.27.0"
	},
	{
		"name": "language-source",
		"version": "0.9.0"
	},
	{
		"name": "language-sql",
		"version": "0.25.10"
	},
	{
		"name": "language-text",
		"version": "0.7.4"
	},
	{
		"name": "language-todo",
		"version": "0.29.4"
	},
	{
		"name": "language-toml",
		"version": "0.18.2"
	},
	{
		"name": "language-typescript",
		"version": "0.4.0"
	},
	{
		"name": "language-xml",
		"version": "0.35.2"
	},
	{
		"name": "language-yaml",
		"version": "0.32.0"
	},
	{
		"name": "line-ending-selector",
		"version": "0.7.7"
	},
	{
		"name": "link",
		"version": "0.31.4"
	},
	{
		"name": "markdown-preview",
		"version": "0.159.20"
	},
	{
		"name": "metrics",
		"version": "1.6.1"
	},
	{
		"name": "minimap",
		"version": "4.29.8"
	},
	{
		"name": "minimap-git-diff",
		"version": "4.3.1"
	},
	{
		"name": "minimap-quick-highlight",
		"version": "1.0.1"
	},
	{
		"name": "nms-color-bracket",
		"version": "0.1.0"
	},
	{
		"name": "notifications",
		"version": "0.70.5"
	},
	{
		"name": "one-dark-syntax",
		"version": "1.8.4",
		"theme": "syntax"
	},
	{
		"name": "one-dark-ui",
		"version": "1.12.4",
		"theme": "ui"
	},
	{
		"name": "one-light-syntax",
		"version": "1.8.4",
		"theme": "syntax"
	},
	{
		"name": "one-light-ui",
		"version": "1.12.4",
		"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.55.2"
	},
	{
		"name": "quick-highlight",
		"version": "0.13.0"
	},
	{
		"name": "settings-view",
		"version": "0.255.0"
	},
	{
		"name": "snippets",
		"version": "1.3.3"
	},
	{
		"name": "solarized-dark-syntax",
		"version": "1.1.5",
		"theme": "syntax"
	},
	{
		"name": "solarized-light-syntax",
		"version": "1.1.5",
		"theme": "syntax"
	},
	{
		"name": "spell-check",
		"version": "0.74.0"
	},
	{
		"name": "status-bar",
		"version": "1.8.15"
	},
	{
		"name": "styleguide",
		"version": "0.49.11"
	},
	{
		"name": "symbols-view",
		"version": "0.118.2"
	},
	{
		"name": "sync-settings",
		"version": "0.8.6"
	},
	{
		"name": "tabs",
		"version": "0.109.2"
	},
	{
		"name": "tag",
		"version": "0.5.0"
	},
	{
		"name": "timecop",
		"version": "0.36.2"
	},
	{
		"name": "tree-view",
		"version": "0.222.0"
	},
	{
		"name": "update-package-dependencies",
		"version": "0.13.1"
	},
	{
		"name": "welcome",
		"version": "0.36.6"
	},
	{
		"name": "whitespace",
		"version": "0.37.6"
	},
	{
		"name": "wrap-guide",
		"version": "0.40.3"
	}
]
# 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
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson
'atom-text-editor:not([mini])':
  'tab': 'emmet:expand-abbreviation-with-tab'
'atom-workspace':
  'alt-y': 'git-time-machine:toggle'
  'alt-w': 'wrap-in-tag:wrap'
  'alt-p': 'github:push'
  'alt-o': 'github:pull'
'.platform-win32':
  'alt-ctrl-shift-a-b-c-d-e': 'key-binding-resolver:toggle'
# 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()}"
# Activate Todo-Show