Skip to content

Instantly share code, notes, and snippets.

@Kwaiyu
Last active January 6, 2021 10:33
Show Gist options
  • Save Kwaiyu/dffd23d993f8e457b663cf27c6203d3d to your computer and use it in GitHub Desktop.
Save Kwaiyu/dffd23d993f8e457b663cf27c6203d3d to your computer and use it in GitHub Desktop.
vscodeSettings
{"lastUpload":"2021-01-06T10:31:42.088Z","extensionVersion":"v3.4.3"}
{
"sync.gist": "dffd23d993f8e457b663cf27c6203d3d",
"sync.removeExtensions": false,
"sync.autoDownload": false,
"sync.autoUpload": true,
"workbench.iconTheme": "vscode-icons",
"sync.syncExtensions": false,
"workbench.colorTheme": "Ayu Mirage",
"editor.fontSize": 20,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.autoGuessEncoding": true,
"code-runner.clearPreviousOutput": true,
"code-runner.executorMap": {
"javascript": "node",
"java": "cd $dir && javac -encoding utf-8 $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"cpp": "cd $dir && g++ $fileName -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",
"scheme": "csi -script",
"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",
"v": "v run",
"sass": "sass --style expanded",
"scss": "scss --style expanded"
},
"code-runner.runInTerminal": true,
"code-runner.saveFileBeforeRun": true,
"editor.formatOnSave": true,
"java.debug.settings.hotCodeReplace": "auto",
"debug.console.fontSize": 20,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontSize": 18,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment