Skip to content

Instantly share code, notes, and snippets.

@vatz88
Last active May 25, 2018 18:38
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 vatz88/779741c3141e22892776bffca1826a3b to your computer and use it in GitHub Desktop.
Save vatz88/779741c3141e22892776bffca1826a3b to your computer and use it in GitHub Desktop.
My VS Code User Settings
[
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "shift+alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+i",
"command": "editor.action.formatDocument",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+i",
"command": "-editor.action.formatDocument",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+b",
"command": "HookyQR.beautify",
"when": "editorTextFocus && !editorReadonly"
}
]
// Place your settings in this file to overwrite the default settings
{
"window.zoomLevel": 0.5,
"vsicons.projectDetection.autoReload": true,
"explorer.openEditors.visible": 0,
"files.autoSave": "afterDelay",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.renderWhitespace": "boundary",
"editor.formatOnType": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.minimap.enabled": true,
"editor.minimap.showSlider": "always",
"editor.wordWrapColumn": 120,
"editor.tabSize": 2,
"git.enableSmartCommit": true,
"git.autofetch": true,
"html.format.endWithNewline": true,
"html.format.wrapLineLength": 120,
"prettier.singleQuote": true,
"prettier.printWidth": 120,
"prettier.trailingComma": "es5",
"prettier.arrowParens": "always",
"jshint.options": {
"esversion": 6,
},
"standard.enable": false,
"typescript.implementationsCodeLens.enabled": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Adapta Nokto",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"[Adapta Nokto]": {
"editorBracketMatch.background": "#546E7A",
"editorIndentGuide.activeBackground": "#607D8B",
"editorIndentGuide.background": "#37474F",
"editorLineNumber.activeForeground": "#B0BEC5",
},
},
"gitlens.keymap": "chorded",
"gitlens.historyExplorer.enabled": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment