Skip to content

Instantly share code, notes, and snippets.

@alimbada
Last active July 2, 2024 08:26
Show Gist options
  • Save alimbada/9f13de9d858545014e8e0f4239cec522 to your computer and use it in GitHub Desktop.
Save alimbada/9f13de9d858545014e8e0f4239cec522 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"[feature]": {
"editor.defaultFormatter": "alexkrechik.cucumberautocomplete"
},
"[java]": {
"editor.foldingImportsByDefault": true,
"editor.suggest.snippetsPreventQuickSuggestions": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"accessibility.signals.terminalBell": {
"sound": "on"
},
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"editor.formatOnType": true,
"editor.guides.bracketPairs": true,
"editor.minimap.renderCharacters": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.scrollBeyondLastLine": false,
"explorer.autoReveal": false,
"files.autoSave": "onFocusChange",
"git.autofetch": true,
// "files.autoSaveDelay": 0,
"git.confirmSync": false,
"git.openRepositoryInParentFolders": "never",
"java.completion.matchCase": "off",
"references.preferredLocation": "view",
"remote.SSH.showLoginTerminal": true,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.allowChords": false,
"terminal.integrated.enableVisualBell": true,
"terminal.integrated.macOptionIsMeta": true,
"terminal.integrated.scrollback": 5000,
"terminal.integrated.tabs.focusMode": "singleClick",
"terminal.integrated.tabs.showActions": "never",
"testing.automaticallyOpenPeekView": "never",
"vim.smartRelativeLine": true,
"workbench.colorCustomizations": {
"terminal.ansiBlack": "#282936",
"terminal.ansiBlue": "#62D6E8",
"terminal.ansiBrightBlack": "#626483",
"terminal.ansiBrightBlue": "#62D6E8",
"terminal.ansiBrightCyan": "#A1EFE4",
"terminal.ansiBrightGreen": "#EBFF87",
"terminal.ansiBrightMagenta": "#B45BCF",
"terminal.ansiBrightRed": "#EA51B2",
"terminal.ansiBrightWhite": "#F7F7FB",
"terminal.ansiBrightYellow": "#00F769",
"terminal.ansiCyan": "#A1EFE4",
"terminal.ansiGreen": "#EBFF87",
"terminal.ansiMagenta": "#B45BCF",
"terminal.ansiRed": "#EA51B2",
"terminal.ansiWhite": "#E9E9F4",
"terminal.ansiYellow": "#00F769",
"terminal.background": "#282936",
"terminal.foreground": "#E9E9F4",
"terminalCursor.background": "#E9E9F4",
"terminalCursor.foreground": "#E9E9F4"
},
"workbench.colorTheme": "Visual Studio Light",
"workbench.editor.enablePreview": false,
"workbench.editor.openPositioning": "last",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment