Skip to content

Instantly share code, notes, and snippets.

@remainstheday
Created October 8, 2024 17:02
Show Gist options
  • Save remainstheday/bb3c757e8bc5040a7015eae1162d0e82 to your computer and use it in GitHub Desktop.
Save remainstheday/bb3c757e8bc5040a7015eae1162d0e82 to your computer and use it in GitHub Desktop.
// 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.
{
"outline_panel": {
"dock": "right"
},
"hover_popover_enabled": true,
"always_treat_brackets_as_autoclosed": true,
"current_line_highlight": "all",
"cursor_shape": "block",
"inlay_hints": {
"enabled": true,
"show_type_hints": false,
"show_parameter_hints": false,
"show_other_hints": false,
"edit_debounce_ms": 1000,
"scroll_debounce_ms": 24000
},
"show_inline_completions": true,
"show_completion_documentation": false,
"autosave": {
"after_delay": {
"milliseconds": 100
}
},
"project_panel": {
"dock": "right"
},
"tab_bar": {
"show": false,
"show_nav_history_buttons": false
},
"toolbar": {
"breadcrumbs": false,
"quick_actions": false,
"title": false,
"working_directory": "current_project_directory"
},
"selected_symbol": false,
"scrollbar": {
"show": "system",
"git_diff": false
},
"tabs": {
"close_position": "right",
"file_icons": true,
"git_status": false
},
"languages": {
"JavaScript": {
"code_actions_on_format": {
"source.organizeImports": true,
"source.fixAll.eslint": true
}
},
"TypeScript": {
"code_actions_on_format": {
"source.organizeImports": true,
"source.fixAll.eslint": true
}
},
"TSX": {
"code_actions_on_format": {
"source.organizeImports": true
}
}
},
"format_on_save": "on",
"theme": "Solarized Dark",
"buffer_font_size": 15,
"ui_font_size": 18,
"git": {
"git_gutter": "hide",
"inline_blame": {
"enabled": false
}
},
"assistant": {
"dock": "left",
"default_model": {
"provider": "zed.dev",
"model": "claude-3-5-sonnet-20240620"
},
"version": "2",
"provider": null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment