Skip to content

Instantly share code, notes, and snippets.

@ukdave
Last active December 20, 2021 08:32
Show Gist options
  • Save ukdave/f556942bc156daf8c243634a54367c48 to your computer and use it in GitHub Desktop.
Save ukdave/f556942bc156daf8c243634a54367c48 to your computer and use it in GitHub Desktop.
My VS Code user settings
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// "editor.fontLigatures": "'ss02', 'ss19'",
"editor.rulers": [120],
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.guides.bracketPairsHorizontal": false,
"workbench.iconTheme": "file-icons",
"workbench.colorTheme": "One Dark Pro",
"window.zoomLevel": -1,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"terminal.integrated.fontFamily": "Hack Nerd Font",
"terminal.integrated.lineHeight": 1.1,
"workbench.fontAliasing": "auto",
"workbench.colorCustomizations": {
"terminal.background": "#191919",
"terminal.ansiBlack": "#1f1f1f",
"terminal.ansiBlue": "#2a84d2",
"terminal.ansiCyan": "#1081d6",
"terminal.ansiGreen": "#2dc55e",
"terminal.ansiMagenta": "#4e5ab7",
"terminal.ansiRed": "#f81118",
"terminal.ansiWhite": "#d6dbe5",
"terminal.ansiYellow": "#ecba0f",
"terminal.ansiBrightBlack": "#d6dbe5",
"terminal.ansiBrightBlue": "#1081d6",
"terminal.ansiBrightCyan": "#0f7ddb",
"terminal.ansiBrightGreen": "#1dd361",
"terminal.ansiBrightMagenta": "#5350b9",
"terminal.ansiBrightRed": "#de352e",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiBrightYellow": "#f3bd09",
"[One Dark Pro]": {
"terminal.background": "#191919",
},
"[Atom One Dark]": {
"terminal.background": "#191919",
},
},
"ruby.lint": {
"rubocop": true,
},
"solargraph.diagnostics": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment