Skip to content

Instantly share code, notes, and snippets.

@josgraha
Last active October 8, 2018 15:39
Show Gist options
  • Save josgraha/10f01b09a1586bedf1727bde7bc94582 to your computer and use it in GitHub Desktop.
Save josgraha/10f01b09a1586bedf1727bde7bc94582 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 0,
"terminal.integrated.fontFamily": "'Dank Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"editor.fontFamily": "'Dank Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 13,
"editor.fontLigatures": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"gitlens.keymap": "chorded",
"gitlens.historyExplorer.enabled": true,
"git.autofetch": true,
"files.associations": {
"*.js": "jsx",
"*.jsx": "js",
},
"prettier.eslintIntegration": true,
"prettier.disableLanguages": [],
"[javascript]": {
"editor.formatOnSave": true
},
"[json]": {
"editor.formatOnSave": true
},
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "vscode-great-icons"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment