Created
January 29, 2024 15:43
-
-
Save Angelfire/0619b9a6762c71b6d8a8679f49528e21 to your computer and use it in GitHub Desktop.
Zed settings
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
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"autosave": "on_window_change", | |
"blinking": "on", | |
"buffer_font_family": "Cascadia Code PL", | |
"buffer_font_size": 12, | |
"copilot": { | |
"disabled_globs": [".env"] | |
}, | |
"format_on_save": "on", | |
"git": { | |
"git_gutter": "tracked_files" | |
}, | |
"inlay_hints": { | |
"enabled": true, | |
"lsp": { | |
"typescript-language-server": { | |
"initialization_options": { | |
"preferences": { | |
"includeInlayParameterNameHints": "all", | |
"includeInlayParameterNameHintsWhenArgumentMatchesName": true, | |
"includeInlayFunctionParameterTypeHints": true, | |
"includeInlayVariableTypeHints": true, | |
"includeInlayVariableTypeHintsWhenTypeMatchesName": false, | |
"includeInlayPropertyDeclarationTypeHints": true, | |
"includeInlayFunctionLikeReturnTypeHints": true, | |
"includeInlayEnumMemberValueHints": true | |
} | |
} | |
} | |
} | |
}, | |
"journal": { | |
"hour_format": "hour24" | |
}, | |
"language_overrides": { | |
"TypeScript": { | |
"formatter": "prettier" | |
}, | |
"JavaScript": { | |
"formatter": "prettier" | |
}, | |
"TSX": { | |
"formatter": "prettier" | |
} | |
}, | |
"preferred_line_length": 100, | |
"project_panel": { | |
"dock": "right", | |
"git_status": true | |
}, | |
"show_line_numbers": true, | |
"show_whitespaces": "all", | |
"theme": "Ayu Dark", | |
"telemetry": { | |
"metrics": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment