Skip to content

Instantly share code, notes, and snippets.

@mayconsgs
Last active May 13, 2024 15:31
Show Gist options
  • Save mayconsgs/a25171951a82e9f0772a17d8fe714674 to your computer and use it in GitHub Desktop.
Save mayconsgs/a25171951a82e9f0772a17d8fe714674 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "GitHub Dark Default",
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"window.menuBarVisibility": "compact",
"workbench.colorCustomizations": {
"[Omni]": {
"editorBracketHighlight.foreground1": "#67E480",
"editorBracketHighlight.foreground2": "#BD93F9",
"editorBracketHighlight.foreground3": "#FF79C6",
"editorBracketHighlight.foreground4": "#78D1FF"
}
},
"files.autoSave": "onWindowChange",
"files.autoSaveDelay": 0,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "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": "off",
"editor.defaultFormatter": "Dart-Code.dart-code"
},
"[yaml]": {
"editor.formatOnSave": true
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/*.g.dart": true,
"**/.dart_tool": true,
"**/.idea": true,
"**/.vscode": false,
"**/.packages": true,
"**/.flutter-plugins": true,
"**/.flutter-plugins-dependencies": true
},
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.ignoreMissingGitWarning": true,
"git.pruneOnFetch": true,
"redhat.telemetry.enabled": false,
"polacode.backgroundColor": "#0000",
"polacode.target": "snippet",
"workbench.startupEditor": "none",
"git.replaceTagsWhenPull": true,
"settingsSync.ignoredExtensions": ["icrawl.discord-vscode"]
}
[
{
"key": "ctrl+shift+c",
"command": "workbench.action.terminal.new",
"when": "!terminalFocus"
},
{
"key": "ctrl+=",
"command": "-workbench.action.zoomIn"
},
{
"key": "ctrl+-",
"command": "-workbench.action.zoomOut"
},
{
"key": "ctrl+=",
"command": "editor.action.transformToUppercase",
"when": "editorTextFocus"
},
{
"key": "ctrl+-",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment