Created
June 16, 2023 06:11
-
-
Save suplo/c383548be598e5d15e4d5af7cc58a14c to your computer and use it in GitHub Desktop.
My VS Code User settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Gruvbox Light (Hard)", | |
"files.trimTrailingWhitespace": true, | |
"editor.renderWhitespace": "all", | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[ruby]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"editor.fontSize": 16, | |
"terminal.integrated.fontSize": 16, | |
"git.openRepositoryInParentFolders": "always", | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [80], | |
"editor.selectionHighlight": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": false | |
}, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontFamily": "monospace", | |
"sync.gist": "99ba789949c3e14775bd3941fa8891bc", | |
"sync.autoDownload": true, | |
"sync.autoUpload": true, | |
"yaml.customTags": [ | |
"!And", | |
"!And sequence", | |
"!If", | |
"!If sequence", | |
"!Not", | |
"!Not sequence", | |
"!Equals", | |
"!Equals sequence", | |
"!Or", | |
"!Or sequence", | |
"!FindInMap", | |
"!FindInMap sequence", | |
"!Base64", | |
"!Join", | |
"!Join sequence", | |
"!Cidr", | |
"!Ref", | |
"!Sub", | |
"!Sub sequence", | |
"!GetAtt", | |
"!GetAZs", | |
"!ImportValue", | |
"!ImportValue sequence", | |
"!Select", | |
"!Select sequence", | |
"!Split", | |
"!Split sequence" | |
], | |
"editor.rulers": [ | |
{ | |
"column": 80, // spacing of 1st column from left | |
"color": "#ff9900" // orange, Go Vols! | |
}, | |
100, // 2nd ruler with no color option | |
{ | |
"column": 120, // third ruler | |
"color": "#9f0af5" // purple, go Pirates! | |
} | |
], | |
"workbench.colorCustomizations": { | |
"statusBar.foreground": "#e4e6e7" | |
}, | |
"redhat.telemetry.enabled": true, | |
"window.zoomLevel": -1, | |
"circleci.hostUrl": "", | |
"workbench.colorCustomizations": { | |
"terminal.background": "#282828", | |
"terminal.foreground": "#D5C4A1", | |
"terminalCursor.background": "#D5C4A1", | |
"terminalCursor.foreground": "#D5C4A1", | |
"terminal.ansiBlack": "#282828", | |
"terminal.ansiBlue": "#83A598", | |
"terminal.ansiBrightBlack": "#665C54", | |
"terminal.ansiBrightBlue": "#83A598", | |
"terminal.ansiBrightCyan": "#8EC07C", | |
"terminal.ansiBrightGreen": "#B8BB26", | |
"terminal.ansiBrightMagenta": "#D3869B", | |
"terminal.ansiBrightRed": "#FB4934", | |
"terminal.ansiBrightWhite": "#FBF1C7", | |
"terminal.ansiBrightYellow": "#FABD2F", | |
"terminal.ansiCyan": "#8EC07C", | |
"terminal.ansiGreen": "#B8BB26", | |
"terminal.ansiMagenta": "#D3869B", | |
"terminal.ansiRed": "#FB4934", | |
"terminal.ansiWhite": "#D5C4A1", | |
"terminal.ansiYellow": "#FABD2F" | |
}, | |
"terminal.integrated.fontSize": 20 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment