Skip to content

Instantly share code, notes, and snippets.

@x5lcfd
Last active August 20, 2018 12:16
Show Gist options
  • Save x5lcfd/72d80c4e59f4944b48e8749618e6dae8 to your computer and use it in GitHub Desktop.
Save x5lcfd/72d80c4e59f4944b48e8749618e6dae8 to your computer and use it in GitHub Desktop.
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 15,
"editor.fontFamily": "'Consolas', 'Inziu IosevkaCC SC'",
"editor.fontLigatures": true,
"editor.renderLineHighlight": "none",
"editor.letterSpacing": 0,
"editor.minimap.enabled": false,
"editor.occurrencesHighlight": false,
"editor.cursorBlinking": "smooth",
"editor.smoothScrolling": true,
"editor.renderIndentGuides": true,
"editor.snippetSuggestions": "top",
"editor.tabCompletion": true,
"editor.lineNumbers": "on",
"editor.folding": true,
"editor.lineHeight": 21,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"workbench.activityBar.visible": true,
"workbench.editor.tabSizing": "shrink",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/*.bundle": true,
"**/*.meta": true,
"**/*.mat": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.svn": true,
"**/*.svn-base": true
},
"files.associations": {
"*.manifest": "yaml",
"*.meta": "yaml",
"*.il": "il",
"*.lua": "lua"
},
"files.autoSave": "off",
"workbench.sideBar.location": "left",
"terminal.integrated.fontFamily": "Consolas",
"terminal.integrated.fontSize": 13,
"insertDateString.format": "YYYY-MM-DD hh:mm",
"code-runner.executorMap": {
"lua": "D:\\usr\\bin\\luajit.exe",
"python": "C:\\Program Files\\Python36\\python.exe",
"clang": "C:\\Program Files\\LLVM\\bin\\clang.exe",
"dart": "C:\\tools\\dart-sdk\\bin\\dart.exe"
},
"extensions.autoUpdate": true,
"workbench.editor.enablePreview": false,
"window.menuBarVisibility": "toggle",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Material Theme Darker High Contrast",
"extensions.ignoreRecommendations": true,
"workbench.iconTheme": "eq-material-theme-icons-darker",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [ "source", "comment", "text", "entity",
"keyword", "constant", "storage", "support",
"string", "punctuation", "invalid", "markup", "meta",
"variable", "token"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
"materialTheme.fixIconsRunning": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment