|
|
@@ -0,0 +1,93 @@
|
|
|
+// 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 `zed: open default settings` from the
|
|
|
+// command palette (cmd-shift-p / ctrl-shift-p)
|
|
|
+{
|
|
|
+ "telemetry": {
|
|
|
+ "diagnostics": false,
|
|
|
+ "metrics": false
|
|
|
+ },
|
|
|
+ "ui_font_size": 16,
|
|
|
+ "buffer_font_size": 12,
|
|
|
+ "theme": {
|
|
|
+ "mode": "system",
|
|
|
+ "dark": "Catppuccin Macchiato",
|
|
|
+ "light": "Rosé Pine"
|
|
|
+ },
|
|
|
+ "icon_theme": "Catppuccin Mocha",
|
|
|
+ "vim_mode": true,
|
|
|
+ "relative_line_numbers": true,
|
|
|
+ "show_edit_predictions": false,
|
|
|
+ "remove_trailing_whitespace_on_save": false,
|
|
|
+ "format_on_save": "off",
|
|
|
+ "ensure_final_newline_on_save": false,
|
|
|
+ "features": {
|
|
|
+ "edit_prediction_provider": "zed"
|
|
|
+ },
|
|
|
+ "agent_font_size": 21,
|
|
|
+ "file_finder": {
|
|
|
+ "file_icons": true,
|
|
|
+ "git_status": true
|
|
|
+ },
|
|
|
+ "buffer_font_family": "Menlo",
|
|
|
+ "buffer_font_fallbacks": ["Symbols Nerd Font Mono"],
|
|
|
+ "tab_bar": {
|
|
|
+ "show": true
|
|
|
+ },
|
|
|
+ "scrollbar": {
|
|
|
+ "show": "never"
|
|
|
+ },
|
|
|
+ "tabs": {
|
|
|
+ "show_diagnostics": "errors"
|
|
|
+ },
|
|
|
+ "indent_guides": {
|
|
|
+ "enabled": true,
|
|
|
+ "coloring": "indent_aware"
|
|
|
+ },
|
|
|
+ "centered_layout": {
|
|
|
+ "left_padding": 0.15,
|
|
|
+ "right_padding": 0.15
|
|
|
+ },
|
|
|
+ "inlay_hints": {
|
|
|
+ "enabled": true
|
|
|
+ },
|
|
|
+ "terminal": {
|
|
|
+ "font_family": "Menlo",
|
|
|
+ "env": {
|
|
|
+ "EDITOR": "zed --wait"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "file_types": {
|
|
|
+ "Dockerfile": ["Dockerfile", "Dockerfile.*"],
|
|
|
+ "JSON": ["json", "jsonc", "*.code-snippets", "jsonl"]
|
|
|
+ },
|
|
|
+ "file_scan_exclusions": [
|
|
|
+ "**/.git",
|
|
|
+ "**/.svn",
|
|
|
+ "**/.hg",
|
|
|
+ "**/CVS",
|
|
|
+ "**/.DS_Store",
|
|
|
+ "**/Thumbs.db",
|
|
|
+ "**/.classpath",
|
|
|
+ "**/.settings",
|
|
|
+ "**/out",
|
|
|
+ "**/dist",
|
|
|
+ "**/.husky",
|
|
|
+ "**/.turbo",
|
|
|
+ "**/.vscode-test",
|
|
|
+ "**/.vscode",
|
|
|
+ "**/.next",
|
|
|
+ "**/.storybook",
|
|
|
+ "**/.tap",
|
|
|
+ "**/.nyc_output",
|
|
|
+ "**/report",
|
|
|
+ "**/node_modules"
|
|
|
+ ],
|
|
|
+ "search": {
|
|
|
+ "regex": true
|
|
|
+ }
|
|
|
+}
|