Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Created April 3, 2020 19:53
Show Gist options
  • Save mrzarkovic/0fc2e562ed0e8864d65232600c951b19 to your computer and use it in GitHub Desktop.
Save mrzarkovic/0fc2e562ed0e8864d65232600c951b19 to your computer and use it in GitHub Desktop.
{
"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++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"php": "php",
"python": "/usr/bin/python3.7",
"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"
},
"telemetry.enableTelemetry": false,
"search.exclude": {
"**/node_modules/**": true,
"**/.next/**": true,
"**/bower_components/**": true,
"**/dist/**": true,
"**/dev/**": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/dist/**": true,
"**/.next/**": true,
"**/dev/**": true
},
"editor.wordWrap": "bounded",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
// Set the default
"editor.formatOnSave": true,
"editor.tabSize": 4,
// Enable per-language
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.iconTheme": "vscode-great-icons",
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "never",
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"liveServer.settings.donotShowInfoMsg": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.renderWhitespace": "all",
"prettier.disableLanguages": [
"vue",
"tf"
],
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.associations": {
// "*.blade.php": "html"
"**/semantic-theme/**/*.overrides": "less",
"**/semantic-theme/**/*.variables": "less"
},
"workbench.startupEditor": "welcomePage",
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
// Characters that will be used as word separators when doing word related navigations or operations
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?_",
"npm.enableScriptExplorer": true,
"vs-kubernetes": {
"vs-kubernetes.minikube-path": "/home/milos/.vs-kubernetes/tools/minikube/linux-amd64/minikube"
},
"eslint.validate": ["vue", "html", "javascript", "typescript"],
"phpcbf.onsave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.pythonPath": "/usr/bin/python3.7",
"code-runner.runInTerminal": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment