Skip to content

Instantly share code, notes, and snippets.

@rrapiteanu
Created March 25, 2024 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rrapiteanu/22e438e03ccc053680a039d27a36664e to your computer and use it in GitHub Desktop.
Save rrapiteanu/22e438e03ccc053680a039d27a36664e to your computer and use it in GitHub Desktop.
vscode settings 2024
{
"editor.accessibilitySupport": "off",
"editor.codeActionsOnSave": {
"source.fixAll": "always"
},
"editor.cursorBlinking": "phase",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Hack",
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.linkedEditing": true,
"editor.bracketPairColorization.enabled": false,
"explorer.fileNesting.enabled": true,
"files.exclude": {
"**/.DS_Store": true,
"**/.classpath": true,
"**/.factorypath": true,
"**/.git": true,
"**/.hg": true,
"**/.next": true,
"**/.project": true,
"**/.settings": true,
"**/.svn": true,
"**/CVS": true,
"**/_build": true,
"**/bin": true,
"**/deps": true,
"**/dist": true,
"**/mix.lock": true,
"**/node_modules": true,
"**/obj": true
},
"relay.autoStartCompiler": true,
"relay.compilerOutputLevel": "debug",
"relay.lspOutputLevel": "debug",
"relay.pathToConfig": "relay.config.js",
"relay.rootDirectory": ".",
"search.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.next": true,
"**/.svn": true,
"**/CVS": true,
"**/_build": true,
"**/bin": true,
"**/deps": true,
"**/dist": true,
"**/mix.lock": true,
"**/node_modules": true,
"**/obj": true
},
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.env.osx": {
"CW_NEW_SESSION": "1"
},
"terminal.integrated.fontFamily": "Hack Nerd Font",
"window.titleBarStyle": "custom",
"window.commandCenter": false,
"window.zoomLevel": 1,
"workbench.editor.labelFormat": "short",
"workbench.editor.showTabs": "multiple",
"redhat.telemetry.enabled": false,
"workbench.iconTheme": "material-icon-theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment