Skip to content

Instantly share code, notes, and snippets.

@A5hleyRich
Created March 31, 2026 10:31
Show Gist options
  • Select an option

  • Save A5hleyRich/19609a711b35c8d74f5799c2d0b91226 to your computer and use it in GitHub Desktop.

Select an option

Save A5hleyRich/19609a711b35c8d74f5799c2d0b91226 to your computer and use it in GitHub Desktop.
Zed config for Laravel development
// 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.
{
"tabs": {
"file_icons": true,
"git_status": true,
},
"disable_ai": true,
"title_bar": {
"show_menus": false,
"show_project_items": false,
"show_branch_name": true,
"show_branch_icon": true,
},
"debugger": {
"button": false,
},
"search": {
"button": false,
},
"diagnostics": {
"button": false,
},
"status_bar": {
"cursor_position_button": false,
},
"minimap": {
"show": "never",
},
"scrollbar": {
"axes": {
"horizontal": false,
},
"diagnostics": "error",
},
"git": {
"inline_blame": {
"show_commit_summary": true,
},
},
"ui_font_family": ".ZedSans",
"theme": "Catppuccin Latte",
"icon_theme": "Catppuccin Latte",
"ui_font_size": 16,
"buffer_font_family": "MonoLisa Variable",
"buffer_font_features": {
"liga": true,
"ss02": true,
},
"buffer_font_size": 16,
"buffer_line_height": {
"custom": 2.6,
},
"scroll_beyond_last_line": "off",
"autosave": "on_focus_change",
"base_keymap": "JetBrains",
"collaboration_panel": {
"button": false,
},
"project_panel": {
"dock": "right",
"indent_size": 28,
},
"seed_search_query_from_cursor": "selection",
"tab_bar": {
"show": false,
},
"terminal": {
"toolbar": {
"breadcrumbs": false,
},
},
"toolbar": {
"code_actions": false,
"breadcrumbs": true,
"quick_actions": false,
},
"experimental.theme_overrides": {
"syntax": {
"keyword": { "color": "#8839ef" },
"type": { "color": "#df8e1d" },
"constructor": { "color": "#fe640b" },
"function": { "color": "#1e66f5" },
"variable": { "color": "#e64553" },
"variable.special": { "color": "#e64553" },
"property": { "color": "#dd7878" },
"string": { "color": "#40a02b" },
"string.escape": { "color": "#ea76cb" },
"string.special": { "color": "#ea76cb" },
"string.regex": { "color": "#ea76cb" },
"comment": { "color": "#7c7f93" },
"comment.doc": { "color": "#7c7f93" },
"number": { "color": "#fe640b" },
"constant": { "color": "#fe640b" },
"boolean": { "color": "#fe640b" },
"operator": { "color": "#04a5e5" },
"punctuation": { "color": "#7c7f93" },
"punctuation.bracket": { "color": "#7c7f93" },
"punctuation.delimiter": { "color": "#7c7f93" },
"punctuation.special": { "color": "#7c7f93" },
"punctuation.list_marker": { "color": "#179299" },
"tag": { "color": "#1e66f5" },
"attribute": { "color": "#df8e1d" },
"enum": { "color": "#179299" },
"preproc": { "color": "#8839ef" },
"embedded": { "color": "#dd7878" },
"emphasis": { "color": "#d20f39" },
"emphasis.strong": { "color": "#d20f39" },
"link_text": { "color": "#7287fd" },
"link_uri": { "color": "#1e66f5" },
"title": { "color": "#d20f39" },
"text.literal": { "color": "#40a02b" },
},
},
"languages": {
"PHP": {
"format_on_save": "on",
"formatter": {
"external": {
"command": "bash",
"arguments": [
"-c",
"cat > {buffer_path} && ./vendor/bin/pint --quiet {buffer_path} && cat {buffer_path}",
],
},
},
"language_servers": [
"phpantom_lsp",
"!intelephense",
"!phpactor",
"!phptools",
"...",
],
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment