Created
September 11, 2024 01:02
-
-
Save gustavonovaes/db4dd0dafd84c471aa1868081d51be81 to your computer and use it in GitHub Desktop.
Zed pra gurizada
This file contains 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
{ | |
"language_models": { | |
"ollama": {} | |
}, | |
"collaboration_panel": { | |
"enabled": false, | |
"assistant": false, | |
"chat": false | |
}, | |
"auto_update": true, | |
"autosave": "on_focus_change", | |
"autosave_delay": 1500, | |
"autosave_on_build": true, | |
"autosave_on_build_delay": 1500, | |
"autosave_on_build_events": [ | |
"build", | |
"run", | |
"debug" | |
], | |
"autosave_on_build_events_delay": 1500, | |
"autosave_on_focus_change": true, | |
"autosave_on_window_change": true, | |
"bracket_pairing": "always", | |
"buffer_font_family": "JetBrains Mono", | |
"buffer_font_size": 16, | |
"confirm_quit": false, | |
"cursor_blink": true, | |
"eslint": { | |
"enabled": true, | |
"autoFixOnSave": true, | |
"autoFixOnFormat": true, | |
"autoFixOnFormatDelay": 1500 | |
}, | |
"format_on_save": "on", | |
"formatter": "prettier", | |
"git": { | |
"enabled": true, | |
"autoFetch": true, | |
"autoFetchInterval": 300, | |
"autoFetchOnFocus": true, | |
"autoFetchOnWindowChange": true, | |
"autoFetchOnBuild": true, | |
"git_status": true, | |
"autoFetchOnBuildEvents": [ | |
"build", | |
"run", | |
"debug" | |
], | |
"autoFetchOnBuildEventsDelay": 1500, | |
"autoFetchOnBuildDelay": 1500, | |
"git_gutter": "tracked_files" | |
}, | |
"hover_popover_enabled": true, | |
"inlay_hints": { | |
"enabled": true, | |
"typeHints": true, | |
"parameterHints": true, | |
"chainingHints": true | |
}, | |
"languages": { | |
"JavaScript": { | |
"code_actions_on_format": { | |
"source.fixAll.eslint": true | |
} | |
}, | |
"TypeScript": { | |
"code_actions_on_format": { | |
"source.organizeImports": true, | |
"source.fixAll.eslint": true | |
} | |
}, | |
"TSX": { | |
"code_actions_on_format": { | |
"source.organizeImports": true, | |
"source.fixAll.eslint": true | |
} | |
} | |
}, | |
"linter": "eslint", | |
"lsp": { | |
"typescript-language-server": { | |
"initialization_options": { | |
"preferences": { | |
"includeInlayParameterNameHints": "all", | |
"includeInlayParameterNameHintsWhenArgumentMatchesName": true, | |
"includeInlayFunctionParameterTypeHints": true, | |
"includeInlayVariableTypeHints": true, | |
"includeInlayVariableTypeHintsWhenTypeMatchesName": false, | |
"includeInlayPropertyDeclarationTypeHints": true, | |
"includeInlayFunctionLikeReturnTypeHints": true, | |
"includeInlayEnumMemberValueHints": true | |
} | |
} | |
} | |
}, | |
"nightly": { | |
"enabled": true, | |
"update_channel": "stable" | |
}, | |
"preferred_line_length": 80, | |
"prettier": { | |
"printWidth": 80, | |
"tabWidth": 2, | |
"useTabs": false, | |
"semi": true, | |
"singleQuote": true, | |
"trailingComma": "all", | |
"bracketSpacing": true, | |
"jsxBracketSameLine": false, | |
"arrowParens": "avoid", | |
"proseWrap": "preserve", | |
"endOfLine": "lf" | |
}, | |
"show_copilot_suggestions": true, | |
"tab_size": 2, | |
"telemetry": { | |
"diagnostics": false, | |
"metrics": false | |
}, | |
"terminal": { | |
"alternate_scroll": "off", | |
"blinking": "terminal_controlled", | |
"copy_on_select": false, | |
"env": {}, | |
"font_family": "JetBrains Mono", | |
"font_features": { | |
"liga": true, | |
"calt": true, | |
"clig": true | |
}, | |
"font_size": 16, | |
"option_as_meta": false, | |
"working_directory": "current_project_directory" | |
}, | |
"theme": "Ayu Mirage", | |
"ui_font_family": "JetBrains Mono", | |
"ui_font_size": 16, | |
"always_treat_brackets_as_autoclosed": true, | |
"assistant": { | |
"default_model": { | |
"provider": "ollama", | |
"model": "ollama" | |
}, | |
"version": "2", | |
"provider": null | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment