Skip to content

Instantly share code, notes, and snippets.

@tlkahn
Created June 3, 2024 01:49
Show Gist options
  • Save tlkahn/6378fa63943afaf2fe63fd6797885b9e to your computer and use it in GitHub Desktop.
Save tlkahn/6378fa63943afaf2fe63fd6797885b9e to your computer and use it in GitHub Desktop.
{
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.renderLineHighlight": "gutter", // Highlights the gutter
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#fff", // Background color of the current line
"editor.lineHighlightBorder": "#eee", // Optional: Border color around the current line (can be removed if not needed)
"statusBar.background": "#e5e5e5"
},
"editor.quickSuggestionsDelay": 0,
"editor.detectIndentation": true,
"editor.fontFamily": "pragmatapro",
"editor.lineNumbers": "off",
"editor.tabCompletion": "onlySnippets",
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"editor.wordWrap": "on",
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"terminal.integrated.inheritEnv": false,
"workbench.activityBar.location": "hidden",
"editor.wordWrapColumn": 88,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"black-formatter.interpreter": [
"/opt/homebrew/Caskroom/miniforge/base/bin/black"
],
"pylint.args": ["--disable=E0015", "--max-line-length=120"],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"editor.minimap.enabled": false,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[ruby]": {
"editor.defaultFormatter": "testdouble.vscode-standard-ruby"
},
"workbench.colorTheme": "Default Light Modern",
"editor.bracketPairColorization.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment