Created
June 25, 2018 21:54
-
-
Save naqushab/aea6334eff17a55cde7be3ec5ee17f7c to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains hidden or 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
{ | |
"code-runner.executorMap": { | |
"python": "\"C:\\Users\\neyazee\\AppData\\Local\\Programs\\Python\\Python36\\python.exe\"" , | |
//"python": "\"C:\\Python27\\python.exe\"", | |
"cpp": "cd $dir && g++ -std=c++11 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt" | |
}, | |
"java.errors.incompleteClasspath.severity":"ignore", | |
"workbench.colorTheme": "One Dark Pro", | |
"window.zoomLevel": 0, | |
"C_Cpp.intelliSenseEngine": "Default", | |
"git.enableSmartCommit": true, | |
"extensions.ignoreRecommendations": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "'Dank Mono', 'Fira Code'", | |
"editor.fontSize": 14, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
//following will be in italic (=FlottFlott) | |
"comment", | |
"entity.name.type.class", //class names | |
"keyword", //import, export, return… | |
"constant", //String, Number, Boolean…, this, super | |
"storage.modifier", //static keyword | |
"storage.type.class.js", //class keyword | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
//following will be excluded from italics (VSCode has some defaults for italics) | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [80,120], | |
"workbench.iconTheme": "vscode-icons", | |
"telemetry.enableTelemetry": false, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"git.autofetch": true, | |
"vsicons.dontShowNewVersionMessage": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment