Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jeffreygnatek/2ac2fea5ed4e956af8e7a5a819df749e to your computer and use it in GitHub Desktop.
Save jeffreygnatek/2ac2fea5ed4e956af8e7a5a819df749e to your computer and use it in GitHub Desktop.
VSCode settings
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.insertSpaces": true,
"editor.renderWhitespace": "all",
// "editor.lineNumbers": "relative",
"editor.tabSize": 2,
"window.zoomLevel": 3,
"git.enableSmartCommit": true,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"workbench.colorCustomizations": {
"editorWhitespace.foreground": "#787176"
},
"editor.minimap.enabled": false,
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "vscode-great-icons",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.trimAutoWhitespace": true,
"debug.hideActionBar": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"workbench.startupEditor": "welcomePage",
"gitlens.historyExplorer.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment