Skip to content

Instantly share code, notes, and snippets.

@rdp77
Last active May 7, 2020 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdp77/e18428fab502687a36eed6551a3dadfa to your computer and use it in GitHub Desktop.
Save rdp77/e18428fab502687a36eed6551a3dadfa to your computer and use it in GitHub Desktop.
VSCode
{"lastUpload":"2020-05-07T14:58:40.106Z","extensionVersion":"v3.4.3"}
{
"dart.flutterSdkPath": "C:\\flutter",
"extensions.autoUpdate": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"workbench.sideBar.location": "left",
"editor.minimap.enabled": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "One Dark Pro",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"code-runner.runInTerminal": true,
"code-runner.executorMap": {
"javascript": "node",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"cpp": "cd $dir && g++ $fullFileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"php": "php",
"python": "python -u",
"perl": "perl",
"perl6": "perl6",
"ruby": "ruby",
"go": "go run",
"lua": "lua",
"groovy": "groovy",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"bat": "cmd /c",
"shellscript": "bash",
"fsharp": "fsi",
"csharp": "scriptcs",
"vbscript": "cscript //Nologo",
"typescript": "ts-node",
"coffeescript": "coffee",
"scala": "scala",
"swift": "swift",
"julia": "julia",
"crystal": "crystal",
"ocaml": "ocaml",
"r": "Rscript",
"applescript": "osascript",
"clojure": "lein exec",
"haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
"rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
"racket": "racket",
"ahk": "autohotkey",
"autoit": "autoit3",
"dart": "dart",
"pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
"d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
"haskell": "runhaskell",
"nim": "nim compile --verbosity:0 --hints:off --run",
"lisp": "sbcl --script",
"kit": "kitc --run"
},
"dart.previewFlutterUiGuides": true,
"window.zoomLevel": 0,
"git.enableSmartCommit": true,
"sync.gist": "e18428fab502687a36eed6551a3dadfa",
"sync.autoUpload": true,
"sync.autoDownload": true,
"sync.quietSync": true,
"[css]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"todo-tree.highlights.enabled": true,
"material-icon-theme.showUpdateMessage": true,
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"editor.formatOnSave": true,
"emmet.triggerExpansionOnTab": true, // enable tab to expanse emmet tags
"blade.format.enable": true, // if you would like to enable blade format
"emmet.includeLanguages": {
"blade": "html"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"cSpell.enableFiletypes": [
"asciidoc",
"blade",
"c",
"cpp",
"csharp",
"css",
"git-commit",
"go",
"handlebars",
"haskell",
"html",
"jade",
"java",
"javascript",
"javascriptreact",
"json",
"jsonc",
"latex",
"less",
"markdown",
"php",
"plaintext",
"pug",
"python",
"restructuredtext",
"rust",
"scala",
"scss",
"text",
"typescript",
"typescriptreact",
"yaml",
"yml"
],
"todo-tree.tree.showScanModeButton": false,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
"gitlens.advanced.messages": {
"suppressFileNotUnderSourceControlWarning": true
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace",
"editor.smoothScrolling": true,
"editor.cursorBlinking": "smooth",
"editor.fontLigatures": true,
"editor.cursorSmoothCaretAnimation": true,
"files.associations": {},
"gitlens.gitCommands.closeOnFocusOut": true,
}
{
// Place your snippets for blade 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"
// }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment