Last active
May 4, 2020 00:22
-
-
Save seksitha/b9478ef9f6568615ad1164e185d2b258 to your computer and use it in GitHub Desktop.
personal vscode user setting
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
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/*.metatdata.json": true, | |
"**/*.js.map": { "when": "$(basename)"}, | |
"**/*.js": { "when": "$(basename).ts"} | |
//"**/*.html": { "when": "$(basename).pug"} | |
}, | |
"window.zoomLevel": -0.8, | |
"editor.fontSize": 15, | |
"editor.tabSize": 2, | |
"workbench.editor.enablePreview": true, | |
"workbench.editor.openPositioning": "last", | |
"workbench.tree.indent": 19, | |
"explorer.autoReveal": false, | |
"explorer.openEditors.visible": 0, | |
"emmet.triggerExpansionOnTab": false, | |
"workbench.activityBar.visible": true, | |
"workbench.statusBar.visible": true, | |
"workbench.sideBar.location": "left", | |
"editor.minimap.enabled": false, | |
"extensions.ignoreRecommendations": true, | |
"editor.renderWhitespace": "all", | |
"explorer.confirmDragAndDrop": false, | |
"emmet.syntaxProfiles": { | |
"javarscript":"jsx", | |
// "ejs": "ejs",ß | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"editor.fontFamily": "Dank Mono, 'Monotype Corsiva', 'Courier New', monospace", | |
"todohighlight.isEnable": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"workbench.editor.showTabs": false, | |
"editor.tokenColorCustomizations": { | |
"comments": "#45906e", | |
}, | |
"workbench.colorCustomizations": { | |
"sideBar.background": "#031323", | |
"sideBar.fontFamily": "'Courier New'", | |
"editor.background": "#090d10", | |
}, | |
"files.associations":{ | |
"*.ejs":"html" | |
}, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Monokai" | |
// "editor.fontLigatures": true, | |
//"vscode_custom_css.imports": ["file:///user/styles_visaul.css"] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment