// 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) { "ssh_connections": [ { "host": "192.168.2.22", "projects": [ { "paths": ["~/repos/argparse.go"] } ] } ], "vim_mode": true, "ui_font_size": 16, "buffer_font_size": 16, "buffer_font_family": "Iosevka Custom", "theme": { "mode": "system", "light": "One Light", "dark": "One Dark" }, "wrap_guides": [80], "selection_highlight": false, "scrollbar": { "show": "never" }, "vim": { "toggle_relative_line_numbers": true, "use_system_clipboard": "on_yank" }, "git": { "git_gutter": null, "gutter_debounce": null, "inline_blame": { "enabled": false }, "hunk_style": null }, "indent_guides": { "enabled": true }, "experimental.theme_overrides": { "editor.document_highlight.read_background": "#0000", // disable (transparent) "editor.document_highlight.write_background": "#0000", // disable (transparent) "editor.document_highlight.bracket_background": "#5c78e225" // use default write_background } }