Skip to content

Instantly share code, notes, and snippets.

@f3rno
Last active July 3, 2020 23:51
Show Gist options
  • Save f3rno/018379f856cd3e17b78158ad6a3dc38e to your computer and use it in GitHub Desktop.
Save f3rno/018379f856cd3e17b78158ad6a3dc38e to your computer and use it in GitHub Desktop.
vscode config #vscode #config
{
"editor.tabSize": 2,
"editor.fontSize": 12,
"editor.cursorStyle": "underline",
"editor.rulers": [
80
],
"explorer.autoReveal": false,
"editor.wordWrap": "on",
"editor.fontFamily": "Source Code Variable",
"workbench.iconTheme": "material-icon-theme",
"workbench.welcome.enabled": false,
"workbench.colorTheme": "enlightened",
"window.zoomLevel": 0,
"workbench.editor.closeOnFileDelete": false,
"editor.occurrencesHighlight": true,
"vim.hlsearch": true,
"material-icon-theme.showUpdateMessage": false,
"editor.minimap.enabled": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.vs": true,
"**/.vscode": true,
"**/node_modules": true
},
"vim.disableAnnoyingNeovimMessage": true,
"window.menuBarVisibility": "default",
"vim.disableAnnoyingGcMessage": true,
"extensions.ignoreRecommendations": true,
"typescript.check.tscVersion": false,
"editor.cursorBlinking": "solid",
"workbench.panel.location": "bottom",
"gitlens.currentLine.format": "${authorAgo} • ${message}",
"gitlens.codeLens.scopes": [
"document",
"containers"
],
"gitlens.keymap": "none",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"terminal.integrated.fontFamily": "'Terminus (TTF)'",
"terminal.integrated.fontSize": 12
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment