Skip to content

Instantly share code, notes, and snippets.

@morsecodemedia
Last active July 16, 2018 18:57
Show Gist options
  • Save morsecodemedia/6656ccecdb0a19f05494f348bd1b4d5e to your computer and use it in GitHub Desktop.
Save morsecodemedia/6656ccecdb0a19f05494f348bd1b4d5e to your computer and use it in GitHub Desktop.
VSCode Settings
// Place your settings in this file to overwrite the default settings
{
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.wordWrap": "off",
"editor.tabSize": 2,
"editor.wrappingIndent": "indent",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.lineNumbers": "relative",
"editor.autoClosingBrackets": false,
"editor.rulers": [
80,
120
],
"editor.renderControlCharacters": true,
"files.encoding": "utf8",
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"search.useIgnoreFilesByDefault": true,
"terminal.external.osxExec": "iTerm2.app",
"terminal.integrated.shell.linux": "bash",
"terminal.integrated.shell.osx": "bash",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
"window.zoomLevel": 0,
"workbench.iconTheme": "vscode-icons",
"gitlens.keymap": "chorded",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"cSpell.language": "en,en-US",
"gitlens.historyExplorer.enabled": true,
"nativescript.analytics.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment