Last active
December 1, 2015 22:51
-
-
Save richy486/fb3952de4b199fe04824 to your computer and use it in GitHub Desktop.
VSCode Settings (Unity)
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ "key": "ctrl+cmd+left", "command": "workbench.action.navigateBack" }, | |
{ "key": "ctrl+cmd+right", "command": "workbench.action.navigateForward" }, | |
{ "key": "cmd+y", "command": "editor.action.goToDeclaration", | |
"when": "editorTextFocus" }, | |
{ "key": "cmd+r", "command": "workbench.action.debug.start", | |
"when": "!inDebugMode" }, | |
{ "key": "cmd+s", "command": "workbench.action.files.saveAll" } | |
] |
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
{ | |
"version": "0.1.0", | |
// List of configurations. Add new configurations or edit existing ones. | |
// ABSOLUTE paths are required for no folder workspaces. | |
"configurations": [ | |
{ | |
// Name of configuration; appears in the launch configuration drop down menu. | |
"name": "Launch", | |
// Type of configuration. | |
"type": "node", | |
// ABSOLUTE path to the program. | |
"program": "", | |
// Automatically stop program after launch. | |
"stopOnEntry": false, | |
// Command line arguments passed to the program. | |
"args": [], | |
// ABSOLUTE path to the working directory of the program being debugged. Default is the directory of the program. | |
"cwd": "", | |
// ABSOLUTE path to the runtime executable to be used. Default is the runtime executable on the PATH. | |
"runtimeExecutable": null, | |
// Optional arguments passed to the runtime executable. | |
"runtimeArgs": ["--nolazy"], | |
// Environment variables passed to the program. | |
"env": { | |
"NODE_ENV": "development" | |
}, | |
// Use JavaScript source maps (if they exist). | |
"sourceMaps": false, | |
// If JavaScript source maps are enabled, the generated code is expected in this directory. | |
"outDir": null | |
}, | |
{ | |
"name": "Attach", | |
"type": "node", | |
// TCP/IP address. Default is "localhost". | |
"address": "localhost", | |
// Port to attach to. | |
"port": 5858, | |
"sourceMaps": false | |
} | |
] | |
} |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"files.exclude": { | |
"node_modules/**": true, | |
"**/*.meta": true, | |
"**/*.png": true, | |
// "**/*.csproj": true, | |
"Build": true, | |
"Temp": true, | |
// "**/*.sln": true, | |
// "**/*.unityproj": true, | |
"**/*.dll": true, | |
"**/*.dylib": true | |
}, | |
"editor.referenceInfos": false, | |
"editor.autoClosingBrackets": false, | |
"editor.wrappingColumn": 9999 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment