Skip to content

Instantly share code, notes, and snippets.

@cchamberlain
Created July 16, 2018 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cchamberlain/f9af607a167b768a36e5d4bdfbaf4214 to your computer and use it in GitHub Desktop.
Save cchamberlain/f9af607a167b768a36e5d4bdfbaf4214 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontSize": 14,
"editor.fontFamily": "'Operator Mono', Consolas, monospace",
"editor.cursorBlinking": "blink",
"terminal.integrated.drawBoldTextInBrightColors": false,
// Enable some vim ctrl key commands that override otherwise common operations, like ctrl+c
"vim.useCtrlKeys": false,
"workbench.colorTheme": "Material Theme",
"window.zoomLevel": -1,
"search.exclude": {
"*.cs": true,
"*.secret.config": true,
"**/*.orig": true,
"**/*.dll": true,
"**/*.exe": true,
"**/ApplicationInsights.config": true,
"**/App.config": true,
"**/Web.config": true,
"**/*.Debug.config": true,
"**/*.Release.config": true,
"**/*.txt": true,
"**/*.DotSettings": true,
"**/*.csproj.user": true,
"**/*.snap": true,
"**/App_Data/": true,
"**/obj/": true,
"**/Properties/": true,
"**/node_modules/": true,
"Connected Services/": true,
"ErrorHandler/": true,
"Scripts/": true,
"Utilities/": true,
"ViewModels/": true,
"**/.awcache/": true,
"**/.vscode/": true,
"lib/": true,
"bin/": true,
"**/shared/js/": true
},
"files.exclude": {
"*.cs": true,
"*.secret.config": true,
"**/*.orig": true,
"**/*.dll": true,
"**/*.exe": true,
"**/ApplicationInsights.config": true,
"**/App.config": true,
"**/Web.config": true,
"**/*.Debug.config": true,
"**/*.Release.config": true,
"**/*.txt": true,
"**/*.DotSettings": true,
"**/*.csproj.user": true,
"**/*.snap": true,
"**/App_Data/": true,
"**/obj/": true,
"**/Properties/": true,
"Connected Services/": true,
"ErrorHandler/": true,
"Scripts/": true,
"Utilities/": true,
"ViewModels/": true,
"**/.awcache/": true,
"**/.vscode/": true,
"lib/": true,
"bin/": true,
"**/shared/js/": true
},
"files.autoSave": "off",
"workbench.sideBar.location": "right",
"mssql.connections": [
{
"server": "COCHAMBERLAI1-W",
"database": "Kaggle",
"authenticationType": "Integrated",
"profileName": "Kaggle",
"password": ""
}
],
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "all",
"materialTheme.fixIconsRunning": false,
"workbench.iconTheme": "eq-material-theme-icons",
"typescript.updateImportsOnFileMove.enabled": "always",
"materialTheme.autoApplyIcons": true,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#C6FF00",
"list.activeSelectionForeground": "#C6FF00",
"list.inactiveSelectionForeground": "#C6FF00",
"list.highlightForeground": "#C6FF00",
"scrollbarSlider.activeBackground": "#C6FF0050",
"editorSuggestWidget.highlightForeground": "#C6FF00",
"textLink.foreground": "#C6FF00",
"progressBar.background": "#C6FF00",
"pickerGroup.foreground": "#C6FF00",
"tab.activeBorder": "#C6FF00",
"notificationLink.foreground": "#C6FF00",
"editor.findWidgetResizeBorder": "#E57373",
"editorWidget.border": "#C6FF00",
"editorWidget.resizeBorder": "#C6FF00",
"settings.modifiedItemForeground": "#C6FF00",
"panelTitle.activeBorder": "#C6FF00"
},
"materialTheme.accentPrevious": "Red",
"materialTheme.accent": "Acid Lime"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment