Skip to content

Instantly share code, notes, and snippets.

@afr-dt
Last active March 22, 2019 21:58
Show Gist options
  • Select an option

  • Save afr-dt/41e5a058ea7d53862ae0a3875153d681 to your computer and use it in GitHub Desktop.

Select an option

Save afr-dt/41e5a058ea7d53862ae0a3875153d681 to your computer and use it in GitHub Desktop.
My settings for vscode
{
"workbench.iconTheme": "vscode-icons",
"workbench.editor.enablePreview": true,
"html.autoClosingTags": true,
"html.format.preserveNewLines": true,
"editor.tabSize": 2,
"editor.snippetSuggestions": "top",
"workbench.colorCustomizations": {
"editor.fontLigatures": true,
"editor.selectionHighlight": true,
"editor.findMatchBackground": "#000C1D",
"editor.findMatchBorder": "#4bdb52",
"editor.findMatchHighlightBackground": "#0097a7",
"tab.activeBackground": "#000C1D",
"activityBar.background": "#000C1D",
"activityBar.border": "#172e46",
"sideBar.background": "#001122",
"sideBar.border": "#44103d",
"sideBar.foreground": "#8BADC1",
"statusBar.background": "#150a2b",
"terminal.border": "#8BADC1",
"panel.border": "#84a3b4",
"panelTitle.activeBorder": "#4bdb52",
"panelTitle.activeForeground": "#ffffff",
"terminal.foreground": "#f7f7f7"
},
"window.zoomLevel": 0,
"workbench.sideBar.location": "left",
// turn it off for JS
"editor.formatOnSave": true,
"prettier.singleQuote": true,
"[javascript]": {
"editor.formatOnSave": true
},
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"files.associations": {
"*.js": "javascriptreact",
"*.html": "html"
},
"editor.renderWhitespace": "all",
"workbench.colorTheme": "Palenight Operator",
"bracketPairColorizer.consecutivePairColors": [
"()",
"[]",
"{}", ["<", "</"],
["<", "/>"],
["Gold", "Orchid", "LightSkyBlue"],
"Red"
],
// Define paired characters and their color groups
"bracketPairColorizer.independentPairColors": [
["()", ["Gold", "Orchid", "LightSkyBlue"], "Blue"],
["[]", ["Gold", "Orchid", "LightSkyBlue"], "Red"],
["{}", ["Gold", "Orchid", "LightSkyBlue"], "Yellow"]
],
"bracketPairColorizer.activeScopeCSS": [
"borderStyle : solid",
"borderWidth : 1px",
"borderColor : {color}; opacity: 0.5"
],
"terminal.integrated.rendererType": "dom",
"editor.fontFamily": "Operator Mono",
"editor.fontWeight": "450",
"editor.fontSize": 14,
// Terminal settings...
"terminal.integrated.fontFamily": "MesloLGLDZ Nerd Font",
"terminal.integrated.fontSize": 13,
"python.pythonPath": "/usr/local/opt/python/bin/python3.7",
"window.titleBarStyle": "native",
"git.autofetch": true
}
@afr-dt
Copy link
Author

afr-dt commented Aug 10, 2018

My settings for vscode
JavaScript, ES6, React JS, Python3, Django and more 😏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment