jtuttas
2/12/2018 - 4:03 PM

Visual Studio Code Settings Sync Gist

Visual Studio Code Settings Sync Gist

{
/*
	// Place your snippets for JavaScript here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	"Print to console": {
		"prefix": "log",
		"body": [
			"console.log('$1');",
			"$2"
		],
		"description": "Log output to console"
	}
*/
"Print to console": {
	"prefix": "log",
	"body": [
		"console.log('$1');"
	],
	"description": "Log output to console"
}
}
{
	/*
	// Place your snippets for Java here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	"Print to console": {
		"prefix": "log",
		"body": [
			"console.log('$1');",
			"$2"
		],
		"description": "Log output to console"
	}
*/
	"Main Class": {
		"prefix": "main",
		"body": [
			"public class $1 {",
			"public static void main(String[] args) {",
			"$2",
			"}",
			"}"
		],
		"description": "Main Class"
	},
	"Println to console": {
		"prefix": "sopl",
		"body": [
			"System.out.println(\"$1\");"
		],
		"description": "System.out.println()"
	},
	"Print to console": {
		"prefix": "sop",
		"body": [
			"System.out.print(\"$1\");"
		],
		"description": "System.out.print()"
	}
}
{
/*
	// Place your snippets for HTML here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	"Print to console": {
		"prefix": "log",
		"body": [
			"console.log('$1');",
			"$2"
		],
		"description": "Log output to console"
	}
*/
"Print to console": {
	"prefix": "bootstrap",
	"body": [
		"<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\">",
		"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js\"></script>",
		"<script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js\"></script>"
	],
	"description": "Incule Bootstrap CDN"
}
}
{
/*
	// Place your snippets for C++ here. Each snippet is defined under a snippet name and has a prefix, body and 
	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 
	// same ids are connected.
	// Example:
	"Print to console": {
		"prefix": "log",
		"body": [
			"console.log('$1');",
			"$2"
		],
		"description": "Log output to console"
	}
*/
"Print to console": {
		"prefix": "ino",
		"body": [
			"void setup() {",
			"}",
			"void loop() {",
			"}"
		],
		"description": "Basic INO"
	}
}
{
    "editor.fontSize": 12,
    "workbench.colorTheme": "Dracula",
    "terminal.integrated.shell.windows": "cmd.exe",
    // Diese Einstellungen sind nur wenn cmder genutzt wird, sonst kann dieses hier gelöscht werden
    "terminal.integrated.shellArgs.windows": [
        "/k",
        "c:\\Users\\jtutt\\OneDrive\\bin\\cmder\\vendor\\init.bat"
    ],
    "editor.mouseWheelZoom": true,
    "git.confirmSync": false,
    "files.exclude": {
        "**/.git": true       
    },
    // Pfad zur Powershell
    "powershell.powerShellExePath": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
    "python.disablePromptForFeatures": [
        "pylint"
    ],
    "window.zoomLevel": 1,
    //-------- Remote VSCode configuration --------
    // Port number to use for connection.
    "remote.port": 52698,

    // Launch the server on start up.
    "remote.onstartup": true,

    // Address to listen on.
    "remote.host": "127.0.0.1",
    
    // Arduiono Settings (Pfad zur Arduino IDE)
    "arduino.path": "c:\\Users\\jtutt\\OneDrive\\bin\\arduino-1.6.13",
    "arduino.additionalUrls": "",
    "arduino.logLevel": "info", 
    "arduino.enableUSBDetection": true,
    "C_Cpp.intelliSenseEngineFallback": "Disabled",
    "C_Cpp.intelliSenseEngine": "Tag Parser",

    // JAVA Plugin
    // Pfad zur Java JDK
    "java.home": "C:\\Program Files\\Java\\jdk1.8.0_131",
    "java.errors.incompleteClasspath.severity": "ignore",
 
    
    // Python
    // Pfad zur Python Executable
    "python.pythonPath": "c:\\Users\\jtutt\\AppData\\Local\\Programs\\Python\\Python36-32\\",
    "python.autoComplete.extraPaths": [],

    // HTML
    "extension.viewInBrowser": "chrome",
    "git.enableSmartCommit": true,
    "sync.gist": "",
    "sync.lastUpload": "2018-02-12T16:01:33.984Z",
    "sync.autoDownload": false,
    "sync.autoUpload": false,
    "sync.lastDownload": "2018-02-12T08:30:52.036Z",
    "sync.forceDownload": false,
    "sync.anonymousGist": true,
    "sync.host": "",
    "sync.pathPrefix": "",
    "sync.quietSync": false,
    "sync.askGistName": false,
}
[
  {
    "metadata": {
      "id": "850c6bb1-4a81-4f83-a81f-835d651a211c",
      "publisherId": "Mikael.Angular-BeastCode",
      "publisherDisplayName": "Mikael"
    },
    "name": "Angular-BeastCode",
    "publisher": "Mikael",
    "version": "5.2.12"
  },
  {
    "metadata": {
      "id": "214cbfb9-7c06-4467-bad4-357ae83eb587",
      "publisherId": "johnpapa.Angular2",
      "publisherDisplayName": "johnpapa"
    },
    "name": "Angular2",
    "publisher": "johnpapa",
    "version": "2.12.0"
  },
  {
    "metadata": {
      "id": "3cd12c20-0143-473f-b7f3-0d5f15cb7249",
      "publisherId": "shakram02.bash-beautify",
      "publisherDisplayName": "shakram02"
    },
    "name": "bash-beautify",
    "publisher": "shakram02",
    "version": "0.1.1"
  },
  {
    "metadata": {
      "id": "fade5c3d-baa8-4693-9672-8618c34bc79e",
      "publisherId": "wcwhitehead.bootstrap-3-snippets",
      "publisherDisplayName": "wcwhitehead"
    },
    "name": "bootstrap-3-snippets",
    "publisher": "wcwhitehead",
    "version": "0.1.0"
  },
  {
    "metadata": {
      "id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
      "publisherId": "Shan.code-settings-sync",
      "publisherDisplayName": "Shan"
    },
    "name": "code-settings-sync",
    "publisher": "Shan",
    "version": "2.8.7"
  },
  {
    "metadata": {
      "id": "690b692e-e8a9-493f-b802-8089d50ac1b2",
      "publisherId": "ms-vscode.cpptools",
      "publisherDisplayName": "ms-vscode"
    },
    "name": "cpptools",
    "publisher": "ms-vscode",
    "version": "0.14.6"
  },
  {
    "metadata": {
      "id": "1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd",
      "publisherId": "msjsdiag.debugger-for-chrome",
      "publisherDisplayName": "msjsdiag"
    },
    "name": "debugger-for-chrome",
    "publisher": "msjsdiag",
    "version": "4.1.0"
  },
  {
    "metadata": {
      "id": "8bb12ae3-73f8-40cf-86b7-4bd5729c6238",
      "publisherId": "GrapeCity.gc-excelviewer",
      "publisherDisplayName": "GrapeCity"
    },
    "name": "gc-excelviewer",
    "publisher": "GrapeCity",
    "version": "2.0.17"
  },
  {
    "metadata": {
      "id": "5960f38e-0bbe-4644-8f9c-9c8824e82511",
      "publisherId": "donjayamanne.githistory",
      "publisherDisplayName": "donjayamanne"
    },
    "name": "githistory",
    "publisher": "donjayamanne",
    "version": "0.4.0"
  },
  {
    "metadata": {
      "id": "7b71fc1b-190d-4f7d-95d1-93e422649b0a",
      "publisherId": "Zignd.html-css-class-completion",
      "publisherDisplayName": "Zignd"
    },
    "name": "html-css-class-completion",
    "publisher": "Zignd",
    "version": "1.16.2"
  },
  {
    "metadata": {
      "id": "be992f3f-9f22-4b66-a1d2-ecad04c28a28",
      "publisherId": "abusaidm.html-snippets",
      "publisherDisplayName": "abusaidm"
    },
    "name": "html-snippets",
    "publisher": "abusaidm",
    "version": "0.2.1"
  },
  {
    "metadata": {
      "id": "198a707e-28af-4e84-8610-6e2f628dd12d",
      "publisherId": "redhat.java",
      "publisherDisplayName": "redhat"
    },
    "name": "java",
    "publisher": "redhat",
    "version": "0.18.1"
  },
  {
    "metadata": {
      "id": "99c12a52-ff68-4e9d-a975-a67556fee2f5",
      "publisherId": "donjayamanne.jquerysnippets",
      "publisherDisplayName": "donjayamanne"
    },
    "name": "jquerysnippets",
    "publisher": "donjayamanne",
    "version": "0.0.1"
  },
  {
    "metadata": {
      "id": "5e69f001-f945-4c97-baf0-320d82a153b3",
      "publisherId": "felixfbecker.php-intellisense",
      "publisherDisplayName": "felixfbecker"
    },
    "name": "php-intellisense",
    "publisher": "felixfbecker",
    "version": "2.2.7"
  },
  {
    "metadata": {
      "id": "40d39ce9-c381-47a0-80c8-a6661f731eab",
      "publisherId": "ms-vscode.PowerShell",
      "publisherDisplayName": "ms-vscode"
    },
    "name": "PowerShell",
    "publisher": "ms-vscode",
    "version": "1.5.1"
  },
  {
    "metadata": {
      "id": "19e1cdbe-42df-443e-89c0-bfecc7204b1d",
      "publisherId": "tht13.python",
      "publisherDisplayName": "tht13"
    },
    "name": "python",
    "publisher": "tht13",
    "version": "0.2.3"
  },
  {
    "metadata": {
      "id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
      "publisherId": "ms-python.python",
      "publisherDisplayName": "ms-python"
    },
    "name": "python",
    "publisher": "ms-python",
    "version": "2018.1.0"
  },
  {
    "metadata": {
      "id": "21e07abb-b9df-418d-8224-c96f1290ec7f",
      "publisherId": "rafaelmaiolla.remote-vscode",
      "publisherDisplayName": "rafaelmaiolla"
    },
    "name": "remote-vscode",
    "publisher": "rafaelmaiolla",
    "version": "1.1.0"
  },
  {
    "metadata": {
      "id": "dda49fd5-1f3b-4d25-bf61-4fc41905ede5",
      "publisherId": "humao.rest-client",
      "publisherDisplayName": "humao"
    },
    "name": "rest-client",
    "publisher": "humao",
    "version": "0.17.0"
  },
  {
    "metadata": {
      "id": "4e44877c-1c8d-4f9c-ba86-1372d0fbeeb1",
      "publisherId": "dracula-theme.theme-dracula",
      "publisherDisplayName": "dracula-theme"
    },
    "name": "theme-dracula",
    "publisher": "dracula-theme",
    "version": "2.8.1"
  },
  {
    "metadata": {
      "id": "450d63ed-8ac6-4694-b26e-77cb20bcb25e",
      "publisherId": "qinjia.view-in-browser",
      "publisherDisplayName": "qinjia"
    },
    "name": "view-in-browser",
    "publisher": "qinjia",
    "version": "0.0.5"
  },
  {
    "metadata": {
      "id": "cf5a111e-3bd1-4e32-9526-20ec73780741",
      "publisherId": "vsciot-vscode.vscode-arduino",
      "publisherDisplayName": "vsciot-vscode"
    },
    "name": "vscode-arduino",
    "publisher": "vsciot-vscode",
    "version": "0.2.10"
  },
  {
    "metadata": {
      "id": "0479fc1c-3d67-49f9-b087-fb9069afe48f",
      "publisherId": "PeterJausovec.vscode-docker",
      "publisherDisplayName": "PeterJausovec"
    },
    "name": "vscode-docker",
    "publisher": "PeterJausovec",
    "version": "0.0.24"
  },
  {
    "metadata": {
      "id": "aaee577c-f062-495a-9816-0cbd442f1d25",
      "publisherId": "ecmel.vscode-html-css",
      "publisherDisplayName": "ecmel"
    },
    "name": "vscode-html-css",
    "publisher": "ecmel",
    "version": "0.2.0"
  },
  {
    "metadata": {
      "id": "61fcd0cf-64d7-4836-8d6b-d55f4fb83281",
      "publisherId": "vscjava.vscode-java-debug",
      "publisherDisplayName": "vscjava"
    },
    "name": "vscode-java-debug",
    "publisher": "vscjava",
    "version": "0.6.0"
  },
  {
    "metadata": {
      "id": "96f11e1f-1a46-4592-b084-f025b2c2a81f",
      "publisherId": "vscjava.vscode-java-pack",
      "publisherDisplayName": "vscjava"
    },
    "name": "vscode-java-pack",
    "publisher": "vscjava",
    "version": "0.2.0"
  }
]
{"lastUpload":"2018-02-12T16:03:09.190Z","extensionVersion":"v2.8.7"}