Created
March 19, 2018 07:21
-
-
Save promer94/4992640562b227bf68a8ec9353583026 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
{ | |
"editor.formatOnSave": false, | |
"editor.detectIndentation": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
}, | |
"editor.fontSize": 18, | |
"python.linting.enabled": true, | |
"python.linting.pylintArgs": [ | |
"--errors-only" | |
], | |
"python.linting.pylintEnabled": true, | |
"python.linting.pep8Enabled": false, | |
"python.formatting.provider": "autopep8", | |
"files.associations": { | |
"*.js": "javascript", | |
"*.jsx": "javascript" | |
}, | |
"html.format.indentHandlebars": true, | |
"html.format.indentInnerHtml": true, | |
"material-icon-theme.hidesExplorerArrows": true, | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"vue-html": "html", | |
"plaintext": "jade" | |
}, | |
"editor.tabSize": 4, | |
"explorer.confirmDelete": false, | |
"window.zoomLevel": 0, | |
"cSpell.language": "en", | |
"workbench.statusBar.feedback.visible": false, | |
"emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly", | |
"javascript.format.enable": false, | |
"javascript.format.insertSpaceAfterConstructor": false, | |
"extensions.ignoreRecommendations": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"sync.gist": "be9412739da28da64e877f7c5b4b2da7", | |
"sync.lastUpload": "2018-03-01T22:06:46.429Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "", | |
"sync.forceDownload": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"eslint.autoFixOnSave": true, | |
"cSpell.userWords": [ | |
"crossorigin" | |
], | |
"gitlens.keymap": "alternate", | |
"code-runner.executorMap": { | |
"javascript": "node", | |
"java": "cd $dir && javac-algs4 $fileName && java-algs4 $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", | |
"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" | |
}, | |
"workbench.colorTheme": "Solarized Dark" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment