Skip to content

Instantly share code, notes, and snippets.

@saga
Created December 23, 2017 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saga/4f681a57be7966bb2cdd8a875e7d4913 to your computer and use it in GitHub Desktop.
Save saga/4f681a57be7966bb2cdd8a875e7d4913 to your computer and use it in GitHub Desktop.
{
// Controls the font family.
"editor.fontFamily": "Fira Code Light, Consolas, monospace",
"http.proxy": "",
"window.restoreWindows": "none",
"editor.fontSize": 15,
"editor.accessibilitySupport": "off",
"editor.tabCompletion": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.fontLigatures": true,
"editor.wordWrap": "on",
// Controls whether the editor should detect links and make them clickable
"editor.links": false,
// Controls the cursor style, accepted values are 'block', 'block-outline', 'line', 'line-thin', 'underline' and 'underline-thin'
"editor.cursorStyle": "line-thin",
// Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid'
"editor.cursorBlinking": "solid",
// Controls whether the editor should render control characters
"editor.renderControlCharacters": true,
// Controls if the minimap is shown
"editor.minimap.enabled": false,
// Controls whether the fold controls on the gutter are automatically hidden.
"editor.showFoldingControls": "always",
// Controls how the editor should render whitespace characters, possibilities are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
"editor.renderWhitespace": "boundary",
// Controls the position of the editor's tabs close buttons or disables them when set to 'off'.
"workbench.editor.tabCloseButton": "off",
// Controls where editors open. Select 'left' or 'right' to open editors to the left or right of the currently active one. Select 'first' or 'last' to open editors independently from the currently active one.
"workbench.editor.openPositioning": "last",
"workbench.startupEditor": "newUntitledFile",
"terminal.external.windowsExec": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"workbench.colorTheme": "Visual Studio Dark",
"typescript.implementationsCodeLens.enabled": true,
"javascript.referencesCodeLens.enabled": true,
"workbench.iconTheme": "material-icon-theme",
"jshint.options": {
"esversion": 6
},
// Link file types to the beautifier type
"beautify.language": {
"js": {
"type": [
"javascript",
"json"
],
"filename": [
".jshintrc",
".jsbeautify"
]
},
"css": [
"css",
"scss"
],
"html": [
"htm",
"html",
"vue-html",
"razor"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment