Skip to content

Instantly share code, notes, and snippets.

@nathandaly
Last active March 30, 2018 21:36
Show Gist options
  • Save nathandaly/0c9b9021011a2ad6504c54880a867924 to your computer and use it in GitHub Desktop.
Save nathandaly/0c9b9021011a2ad6504c54880a867924 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"csharp.format.enable": false,
"workbench.iconTheme": "vscode-icons",
"files.exclude": {
".idea/": true
},
"terminal.external.osxExec": "iTerm.app",
"terminal.explorerKind": "external",
// The number of spaces a tab is equal to. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.tabSize": 2,
// Insert spaces when pressing Tab. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.insertSpaces": true,
// When opening a file, `editor.tabSize` and `editor.insertSpaces`
// will be detected based on the file contents. Set to false to keep
// the values you've explicitly set, above.
"editor.detectIndentation": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment