Skip to content

Instantly share code, notes, and snippets.

@henrycatalinismith
Created January 30, 2024 18:52
Show Gist options
  • Save henrycatalinismith/0500eb21da6c5395ba8667bccc3d82cc to your computer and use it in GitHub Desktop.
Save henrycatalinismith/0500eb21da6c5395ba8667bccc3d82cc to your computer and use it in GitHub Desktop.
VSCode Settings
{
"[ruby]": {
"editor.defaultFormatter": "ruby-syntax-tree.vscode-syntax-tree",
"editor.formatOnSave": true
},
"codesnap.showLineNumbers": false,
"diffEditor.renderSideBySide": false,
"breadcrumbs.enabled": false,
"editor.autoClosingBrackets": "never",
"editor.autoClosingDelete": "never",
"editor.autoClosingOvertype": "never",
"editor.autoClosingQuotes": "never",
"editor.cursorSmoothCaretAnimation": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Iosevka",
"editor.fontSize": 18,
"editor.guides.indentation": false,
"editor.insertSpaces": true,
"editor.minimap.enabled": false,
"editor.selectionHighlight": false,
"editor.smoothScrolling": true,
"editor.tabSize": 2,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"gitlens.codeLens.enabled": false,
"gitlens.graph.layout": "editor",
"gitlens.plusFeatures.enabled": false,
"gitlens.statusBar.enabled": false,
"html.autoClosingTags": false,
"javascript.autoClosingTags": false,
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.fontFamily": "Iosevka",
"terminal.integrated.fontSize": 18,
"terminal.integrated.minimumContrastRatio": 4.5,
"terminal.integrated.tabs.hideCondition": "never",
"typescript.autoClosingTags": false,
"typescript.suggest.paths": true,
"typescript.tsserver.log": "off",
"vim.joinspaces": false,
"vim.leader": "space",
"workbench.activityBar.location": "top",
"workbench.colorCustomizations": {
"gitlens.trailingLineForegroundColor": "#93a1a1",
"terminal.ansiBrightBlack": "#002b36",
"terminal.ansiBrightBlue": "#268bd2",
"terminal.ansiBrightCyan": "#2aa198",
"terminal.ansiBrightGreen": "#9bb300",
"terminal.ansiBrightMagenta": "#d33682",
"terminal.ansiBrightRed": "#dc322f",
"terminal.ansiBrightWhite": "#fdf6e3",
"terminal.ansiBrightYellow": "#b58900"
},
"workbench.colorTheme": "Solarized Dark",
"workbench.startupEditor": "none",
"workbench.tips.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment