Skip to content

Instantly share code, notes, and snippets.

@ryanolsonx
Last active June 20, 2024 16:09
Show Gist options
  • Save ryanolsonx/b3bdc882d472f3ccfd2ea644a918cd09 to your computer and use it in GitHub Desktop.
Save ryanolsonx/b3bdc882d472f3ccfd2ea644a918cd09 to your computer and use it in GitHub Desktop.
Latest vs code settings
{
"editor.bracketPairColorization.enabled": false,
"editor.codeActionsOnSave": { "source.fixAll.eslint": "always" },
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.guides.indentation": false,
"editor.matchBrackets": "near",
"editor.minimap.enabled": false,
"editor.occurrencesHighlight": "off",
"editor.quickSuggestions": { "other": "off", "comments": "off", "strings": "off" },
"editor.renderLineHighlight": "gutter",
"editor.tokenColorCustomizations": { "textMateRules": [ { "scope": "entity.name.type, entity.name.class", "settings": { "fontStyle": "" } }, { "scope": "entity.other.inherited-class", "settings": { "fontStyle": "italic" } } ] },
"extensions.ignoreRecommendations": true,
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.inputValidation": true,
"terminal.integrated.scrollback": 10000000,
"window.zoomLevel": 1,
"window.zoomPerWindow": false,
"workbench.colorTheme": "Monokai Night",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment