Skip to content

Instantly share code, notes, and snippets.

@dagolinuxoid
Created April 9, 2018 09:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dagolinuxoid/2c6a72034e56fc9157a467fd2704f982 to your computer and use it in GitHub Desktop.
Save dagolinuxoid/2c6a72034e56fc9157a467fd2704f982 to your computer and use it in GitHub Desktop.
visual studio code | my_config | ~/.config/Code/User/settings.json
{
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"window.zoomLevel": 0,
"editor.fontFamily": "Hack", // "Liberation Mono"
"editor.fontSize": 14,
"editor.minimap.enabled": false,
"files.associations": {
"*.html": "html"
},
"[html]": {
"editor.tabSize": 2
},
"workbench.startupEditor": "none",
"workbench.iconTheme": null,
"[css]": {
"editor.tabSize": 2
},
"extensions.ignoreRecommendations": false,
"editor.renderWhitespace": "none",
"editor.codeLens": true,
"editor.links": false,
"workbench.colorCustomizations": {
"editor.background": "#2a2a2e",
"statusBar.background": "#272b35",
"activityBar.background": "#24292e"
},
"terminal.integrated.fontSize": 14,
"editor.occurrencesHighlight": true,
"vim.disableAnnoyingNeovimMessage": true,
"window.menuBarVisibility": "default",
"keyboard.dispatch": "keyCode"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment