Last active
March 11, 2020 22:18
-
-
Save raviolliii/6413b62c079f3e9132b5dd8974d6ae83 to your computer and use it in GitHub Desktop.
VS Code settings.json file
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
{ | |
"workbench.colorTheme": "Material Spacegray", | |
"extensions.ignoreRecommendations": true, | |
"workbench.fontAliasing": "antialiased", | |
"workbench.statusBar.visible": false, | |
"breadcrumbs.enabled": false, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "relative", | |
"editor.matchBrackets": "never", | |
"editor.parameterHints.enabled": false, | |
"editor.smoothScrolling": true, | |
"editor.tabSize": 4, | |
"editor.cursorSurroundingLines": 12, | |
"editor.rulers": [80], | |
"editor.padding.top": 12, | |
"terminal.integrated.fontFamily": "inconsolata for powerline", | |
"terminal.integrated.fontSize": 14, | |
"markdown-preview-enhanced.previewTheme": "vue.css", | |
"markdown-preview-enhanced.mermaidTheme": "forest", | |
"markdown-preview-enhanced.enableExtendedTableSyntax": true, | |
"markdown-preview-enhanced.printBackground": true, | |
"autoDocstring.docstringFormat": "google", | |
"[markdown]": { | |
"editor.wordWrap": "on", | |
"editor.quickSuggestions": false | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"node_modules/": true, | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"workbench.colorCustomizations": { | |
"titleBar.activeBackground": "#2b303b", | |
"titleBar.inactiveBackground": "#2b303b", | |
"sideBar.background": "#232730", | |
"activityBar.background": "#2b303b", | |
"tab.activeBackground": "#2b303b", | |
"tab.inactiveBackground": "#2b303b", | |
"editorGroupHeader.tabsBackground": "#2b303b", | |
"editorLineNumber.activeForeground": "#ffffff", | |
"editor.lineHighlightBackground": "#323847", | |
"statusBar.background": "#2b303b", | |
"editorIndentGuide.background": "#363c4b", | |
"editorIndentGuide.activeBackground": "#363c4b", | |
"editorCursor.foreground": "#656a77", | |
"scrollbarSlider.background": "#00000000", | |
// for the terminal | |
"terminal.background":"#2e3340", | |
"terminal.foreground": "#d8dee8", | |
"terminalCursor.background": "#3b4251", | |
"terminalCursor.foreground": "#d8dee8", | |
"terminal.ansiBlack": "#3b4251", | |
"terminal.ansiBlue": "#81a1c1", | |
"terminal.ansiBrightBlack": "#4c556a", | |
"terminal.ansiBrightBlue": "#81a1c1", | |
"terminal.ansiBrightCyan": "#8fbcbb", | |
"terminal.ansiBrightGreen": "#a3be8b", | |
"terminal.ansiBrightMagenta": "#b48dac", | |
"terminal.ansiBrightRed": "#bf6069", | |
"terminal.ansiBrightWhite": "#eceef4", | |
"terminal.ansiBrightYellow": "#eacb8a", | |
"terminal.ansiCyan": "#88c0d0", | |
"terminal.ansiGreen": "#a3be8b", | |
"terminal.ansiMagenta": "#b48dac", | |
"terminal.ansiRed": "#bf6069", | |
"terminal.ansiWhite": "#e5e9f0", | |
"terminal.ansiYellow": "#eacb8a" | |
}, | |
"explorer.autoReveal": false, | |
"emmet.showExpandedAbbreviation": "never", | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j","j"], | |
"after": ["<Esc>"] | |
}, | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [","], | |
"after": ["@@"], | |
}, | |
{ | |
"before": ["H"], | |
"commands": ["workbench.action.previousEditorInGroup"] | |
}, | |
{ | |
"before": ["L"], | |
"commands": ["workbench.action.nextEditorInGroup"] | |
}, | |
{ | |
"before": ["K"], | |
"after": ["g", "d"] | |
} | |
], | |
"git.ignoreLegacyWarning": true, | |
"editor.tokenColorCustomizations": { | |
"[Material Spacegray]": { | |
"textMateRules": [ | |
{ | |
"scope": "string.quoted.docstring.multi.python", | |
"settings": { | |
"foreground": "#63707b" | |
} | |
}, | |
{ | |
"scope": "string.quoted.docstring.multi.python punctuation.definition.string.end.python", | |
"settings": { | |
"foreground": "#63707b" | |
} | |
}, | |
{ | |
"scope": "string.quoted.docstring.multi.python punctuation.definition.string.begin.python", | |
"settings": { | |
"foreground": "#63707b" | |
} | |
} | |
] | |
} | |
}, | |
"window.zoomLevel": 0, | |
"diffEditor.renderSideBySide": true, | |
"todohighlight.isEnable": true, | |
"todohighlight.keywords": [ | |
"TODO:", | |
"DEBUG:", | |
"HACK:", | |
{ | |
"text": "TODO:", | |
"backgroundColor": "#00000000", | |
"color": "skyblue", | |
}, | |
{ | |
"text": "FIX:", | |
"backgroundColor": "#00000000", | |
"color": "orange", | |
}, | |
{ | |
"text": "DEBUG:", | |
"color": "tomato", | |
}, | |
{ | |
"text": "HACK:", | |
"backgroundColor": "#00000000", | |
"color": "palegreen", | |
} | |
], | |
"todohighlight.defaultStyle": { | |
"backgroundColor": "none", | |
"color": "gold", | |
"fontStyle": "italic" | |
}, | |
"logFileHighlighter.customPatterns": [ | |
{ | |
"pattern": "\\[Low\\]", | |
"foreground": "skyblue" | |
}, | |
{ | |
"pattern": "\\[Medium\\]", | |
"foreground": "#ffca50" | |
}, | |
{ | |
"pattern": "\\[High\\]", | |
"foreground": "coral" | |
}, | |
{ | |
"pattern": "\\[bug\\]", | |
"foreground": "coral" | |
}, | |
{ | |
"pattern": "@\\S+\\b", | |
"foreground": "#63707b" | |
}, | |
{ | |
"pattern": "\\[todo\\]", | |
"foreground": "#ffca50" | |
}, | |
{ | |
"pattern": "\\*\\*.*\\*\\*", | |
"foreground": "lightgreen" | |
} | |
], | |
"files.associations": { | |
"notes": "markdown" | |
}, | |
"city-lights-icons-vsc.hidesExplorerArrows": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment