Skip to content

Instantly share code, notes, and snippets.

@lnxpy
Last active November 22, 2023 08:51
Show Gist options
  • Save lnxpy/ee7233f2642ec956abc5aa55e7170541 to your computer and use it in GitHub Desktop.
Save lnxpy/ee7233f2642ec956abc5aa55e7170541 to your computer and use it in GitHub Desktop.
My VSCode Configs
{
"editor.fontSize": 17,
"workbench.iconTheme": "eq-material-theme-icons-light",
"workbench.tree.indent": 25,
"editor.renderWhitespace": "none",
"editor.cursorStyle": "line",
"editor.cursorBlinking": "smooth",
"editor.minimap.enabled": false,
"workbench.colorTheme": "Dobri Next -A03- Mirage",
"editor.fontLigatures": true,
"editor.fontFamily": "JetBrains Mono",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.autoSave": "afterDelay",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"isort.args": ["--profile", "black"],
"python.linting.mypyEnabled": false,
"python.linting.flake8Enabled": true,
"flake8.args": ["--ignore=E501"],
"python.linting.enabled": true,
"python.defaultInterpreterPath": "/Users/sadra/Projects/mindsdb/venv",
"editor.accessibilitySupport": "off",
"editor.formatOnSave": true,
"workbench.colorCustomizations": {
// Border separating the title bar from the rest of the editor
"titleBar.border": "#18222D",
// Border color to separate Tabs from each other
"tab.border": "#18222D",
// Border color on the top separating to the editor (terminal)
"panel.border": "#2F333D",
// Border color on the side separating the editor
"sideBar.border": "#18222D",
// Border color with the Side Bar
"activityBar.border": "#18222D",
// Border color separating the Status Bar and editor
"statusBar.border": "#18222D",
// Border color to separate multiple editor groups from each other
"editorGroup.border": "#18222D",
// Border color of the editor group title header when tabs are enabled
"editorGroupHeader.tabsBorder": "#18222D",
// Notification shadow
"widget.shadow": "#ffffff00",
"statusBar.background": "#2F6DB4",
"statusBar.foreground": "#ffffff",
"statusBarItem.remoteForeground": "#ffffff",
"statusBarItem.remoteBackground": "#2F6DB4"
},
"yaml.schemas": {
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
},
"yaml.customTags": [
"!ENV scalar",
"!ENV sequence",
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
]
}
@lnxpy
Copy link
Author

lnxpy commented Jan 8, 2022

Make sure you have already installed the required extensions, fonts, and stuff.. <3

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