Created
July 29, 2020 14:43
-
-
Save rdp77/e9ce2ee65046aef70e18aa4ff514a71d to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"dart.flutterSdkPath": "C:\\flutter", | |
"extensions.autoUpdate": false, | |
"editor.suggestSelection": "first", | |
"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\\WindowsPowerShell\\v1.0\\powershell.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, | |
"todo-tree.highlights.enabled": true, | |
"material-icon-theme.showUpdateMessage": 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" | |
}, | |
"todo-tree.tree.showScanModeButton": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"diffEditor.renderSideBySide": false, | |
"gitlens.advanced.messages": { | |
"suppressFileNotUnderSourceControlWarning": true | |
}, | |
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace", | |
"editor.smoothScrolling": true, | |
"editor.cursorBlinking": "smooth", | |
"editor.fontLigatures": true, | |
"editor.cursorSmoothCaretAnimation": true, | |
"gitlens.gitCommands.closeOnFocusOut": true, | |
"workbench.editor.enablePreview": false, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.fontFamily": "Cascadia Code PL", | |
"eslint.format.enable": true, | |
"editor.formatOnSave": true, | |
"vetur.format.defaultFormatter.html": "prettier", | |
"html.format.extraLiners": "head, body, /html", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[markdown]": { | |
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"prettier.htmlWhitespaceSensitivity": "ignore", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"[css]": { | |
"editor.suggest.insertMode": "replace" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment