Created
May 4, 2018 07:57
-
-
Save ncthbrt/99ef09fbaca39aee623c32e1564009e9 to your computer and use it in GitHub Desktop.
Vscode config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} |
Author
ncthbrt
commented
May 4, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment