feat: added zed (flatpak) configuration
parent
7f992afd2c
commit
570cd4c9e6
|
|
@ -0,0 +1,136 @@
|
|||
// 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)
|
||||
{
|
||||
"vim_mode": false,
|
||||
"telemetry": {
|
||||
"metrics": false,
|
||||
"diagnostics": false
|
||||
},
|
||||
|
||||
"base_keymap": "VSCode",
|
||||
|
||||
"theme": "One Dark - Darkened",
|
||||
"icon_theme": "Catppuccin Mocha",
|
||||
"ui_font_size": 14,
|
||||
"buffer_font_size": 12,
|
||||
"buffer_font_family": "FiraCode Nerd Font Mono",
|
||||
"buffer_line_height": "standard",
|
||||
"buffer_font_features": {
|
||||
"calt": true
|
||||
},
|
||||
|
||||
"bottom_dock_layout": "left_aligned",
|
||||
|
||||
"terminal": {
|
||||
"font_family": "FiraCode Nerd Font Mono",
|
||||
"font_size": 12,
|
||||
"line_height": "standard",
|
||||
"toolbar": {
|
||||
"breadcrumbs": false
|
||||
},
|
||||
"font_features": {
|
||||
"calt": true
|
||||
}
|
||||
},
|
||||
|
||||
"minimap": {
|
||||
"show": "auto"
|
||||
},
|
||||
|
||||
"tabs": {
|
||||
"file_icons": true,
|
||||
"git_status": true,
|
||||
"show_diagnostics": "all"
|
||||
},
|
||||
|
||||
"project_panel": {
|
||||
"entry_spacing": "standard"
|
||||
},
|
||||
|
||||
"agent": {
|
||||
"default_profile": "ask",
|
||||
"default_model": {
|
||||
"provider": "zed.dev",
|
||||
"model": "claude-sonnet-4"
|
||||
},
|
||||
"button": true
|
||||
},
|
||||
"show_edit_predictions": true,
|
||||
|
||||
"collaboration_panel": {
|
||||
"button": false
|
||||
},
|
||||
|
||||
"notification_panel": {
|
||||
"button": false
|
||||
},
|
||||
|
||||
"title_bar": {
|
||||
"show_branch_icon": true
|
||||
},
|
||||
|
||||
"tab_bar": {
|
||||
"show_nav_history_buttons": false
|
||||
},
|
||||
|
||||
"toolbar": {
|
||||
"agent_review": false,
|
||||
"code_actions": true
|
||||
},
|
||||
|
||||
"diagnostics": {
|
||||
"inline": {
|
||||
"enabled": true,
|
||||
"max_severity": "warning"
|
||||
}
|
||||
},
|
||||
|
||||
"inlay_hints": {
|
||||
"enabled": true,
|
||||
"show_type_hints": false
|
||||
},
|
||||
|
||||
"indent_guides": {
|
||||
"coloring": "indent_aware"
|
||||
},
|
||||
|
||||
"tab_size": 2,
|
||||
"show_whitespaces": "trailing",
|
||||
"wrap_guides": [110],
|
||||
|
||||
"inline_code_actions": false,
|
||||
"relative_line_numbers": true,
|
||||
|
||||
"languages": {
|
||||
"Vue.js": {
|
||||
"formatter": {
|
||||
"code_actions": {
|
||||
"source.fixAll.eslint": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"JavaScript": {
|
||||
"formatter": {
|
||||
"code_actions": {
|
||||
"source.fixAll.eslint": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"TypeScript": {
|
||||
"formatter": {
|
||||
"code_actions": {
|
||||
"source.fixAll.eslint": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"YAML": {
|
||||
"format_on_save": "off"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue