Skip to content

Instantly share code, notes, and snippets.

@ncthbrt
Created May 4, 2018 07:57
Show Gist options
  • Save ncthbrt/99ef09fbaca39aee623c32e1564009e9 to your computer and use it in GitHub Desktop.
Save ncthbrt/99ef09fbaca39aee623c32e1564009e9 to your computer and use it in GitHub Desktop.
Vscode config
{
"standard.semistandard": true,
"standard.autoFixOnSave": true,
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.fontLigatures": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/.next": true
},
"GodotTools.editorPath": "/Applications/Godot.app/Contents/Godot",
"typescript.autoImportSuggestions.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 0,
"terminal.external.osxExec": "iTerm.app",
"workbench.colorTheme": "Default High Contrast",
"extensions.ignoreRecommendations": false,
"[dockerfile]": {
"editor.formatOnSave": false
},
"javascript.format.enable": false,
"bracketPairColorizer.showHorizontalScopeLine": false,
"workbench.colorCustomizations": {
"sideBar.foreground": "#606060",
"activityBar.foreground": "#606060",
"contrastBorder": "#606060",
"statusBar.foreground": "#606060",
"tab.inactiveForeground": "#606060",
"tab.activeForeground": "#606060",
"editorLineNumber.foreground": "#606060",
"list.inactiveSelectionForeground": "#808080",
"focusBorder": "#808080",
"gitDecoration.modifiedResourceForeground": "#00D000",
"gitDecoration.deletedResourceForeground": "#D00000"
},
"workbench.iconTheme": null,
"workbench.activityBar.visible": true
}
@ncthbrt
Copy link
Author

ncthbrt commented May 4, 2018

screen shot 2018-05-04 at 09 57 50

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment