Skip to content

Instantly share code, notes, and snippets.

@obbaeiei
Created August 7, 2024 11:50
Show Gist options
  • Save obbaeiei/289ba32da06705780dc92cf64f31784d to your computer and use it in GitHub Desktop.
Save obbaeiei/289ba32da06705780dc92cf64f31784d to your computer and use it in GitHub Desktop.
My first zed ~/.config/zed/settings.json
// 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 `zed: Open Default Settings` command
// from the command palette
{
"assistant": {
"version": "2",
"default_open_ai_model": null,
"default_model": {
"provider": "openai",
"model": "gpt-4o"
}
},
"base_keymap": "VSCode",
"vim_mode": true,
"ui_font_size": 20,
"buffer_font_size": 16,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Zedokai Darker"
},
// from here down are my custom settings
"preferred_line_length": 100,
"vim": {
"use_system_clipboard": "never",
"use_multiline_find": true
},
"auto_update": true,
"soft_wrap": "editor_width",
"confirm_quit": false,
"ensure_final_newline_on_save": true,
"remove_trailing_whitespace_on_save": true,
"extend_comment_on_newline": false,
"scrollbar": {
"show": "never"
},
"bracket_pairing": "always",
"format_on_save": "on",
"formatter": "auto",
"hover_popover_enabled": true,
"show_completions_on_input": true,
"vertical_scroll_margin": 0,
"cursor_blink": false,
"terminal": {
"alternate_scroll": "off",
"blinking": "terminal_controlled",
"copy_on_select": false,
"env": {},
"font_size": 14,
"dock": "bottom",
"default_height": 320,
"option_as_meta": false,
"shell": "system",
"working_directory": "current_project_directory"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment