Skip to content

Instantly share code, notes, and snippets.

@sammid37
Last active January 10, 2024 18:33
Show Gist options
  • Save sammid37/91bd297c7434e1200a62fea73419ced3 to your computer and use it in GitHub Desktop.
Save sammid37/91bd297c7434e1200a62fea73419ced3 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Font settings
"editor.fontSize": 16,
"editor.fontLigatures": false,
"editor.fontFamily": "'Victor Mono Regular', 'Victor Mono Bold Italic', 'Victor Mono', 'monospace', monospace",
// "editor.fontFamily": "'Space Mono Regular', 'Space Mono Bold Italic', 'Space Mono', 'monospace', monospace",
// Cursor and other settings
"diffEditor.wordWrap": "on",
"editor.wordWrap": "on",
"editor.cursorStyle": "block",
"editor.cursorBlinking": "phase",
"editor.tabSize": 2,
"window.menuBarVisibility": "compact",
// Better Comments Extension settings
"better-comments.tags": [
{
"tag": "!",
"color": "#191724",
"strikethrough": false,
"underline": false,
"backgroundColor": "#ebbcba",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#e0def4",
"strikethrough": false,
"underline": false,
"backgroundColor": "#3e8fb0",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#eb6f92",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
// My Favorite Themes and Icon Sets
"workbench.preferredDarkColorTheme": "Rosé Pine",
"workbench.colorTheme": "Serendipity Midnight",
// "workbench.colorTheme": "Serendipity Sunset",
// "workbench.colorTheme": "Catppuccin Mocha",
// "workbench.colorTheme": "Catppuccin Macchiato",
"workbench.iconTheme": "gruvbox-material-icon-theme"
// "workbench.iconTheme": "chalice-icon-theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment