removed zed settings, not for me
This commit is contained in:
@@ -1,168 +0,0 @@
|
||||
[
|
||||
// ─── UNBINDS ────────────────────────────────────────────────────────────────
|
||||
{
|
||||
"context": "Editor && vim_mode == insert",
|
||||
"bindings": { "ctrl-l": null, "ctrl-h": null },
|
||||
},
|
||||
{
|
||||
"context": "FileFinder || FileFinder > Picker > Editor || FileFinder > Picker > menu",
|
||||
"bindings": { "ctrl-l": null, "ctrl-h": null },
|
||||
},
|
||||
{
|
||||
"context": "BufferSearchBar",
|
||||
"bindings": { "ctrl-l": null, "ctrl-h": null },
|
||||
},
|
||||
{
|
||||
"context": "vim_mode == literal",
|
||||
"bindings": { "ctrl-l": null, "ctrl-h": null },
|
||||
},
|
||||
{
|
||||
"context": "VimControl && !menu",
|
||||
"bindings": { "ctrl-b": null, "ctrl-o": null, "ctrl-h": null, "ctrl-j": null, "ctrl-k": null, "ctrl-l": null },
|
||||
},
|
||||
{
|
||||
"context": "Workspace",
|
||||
"bindings": { "ctrl-b": null, "ctrl-h": null, "ctrl-j": null, "ctrl-k": null, "ctrl-l": null },
|
||||
},
|
||||
{
|
||||
"context": "Editor",
|
||||
"bindings": { "ctrl-h": null, "ctrl-j": null, "ctrl-k": null, "ctrl-l": null },
|
||||
},
|
||||
{
|
||||
"unbind": { "ctrl-o": "workspace::OpenFiles" },
|
||||
},
|
||||
// ─── EDITOR ─────────────────────────────────────────────────────────────────
|
||||
{
|
||||
"context": "Editor",
|
||||
"bindings": {
|
||||
"ctrl-e": "project_panel::Toggle",
|
||||
"ctrl-f": "pane::DeploySearch",
|
||||
"ctrl-o": "terminal_panel::Toggle",
|
||||
"ctrl-m": "tab_switcher::ToggleAll",
|
||||
},
|
||||
},
|
||||
// ─── BUFFER SEARCH BAR ──────────────────────────────────────────────────────
|
||||
{
|
||||
"context": "BufferSearchBar",
|
||||
"bindings": {
|
||||
"ctrl-r": "search::ToggleReplace",
|
||||
},
|
||||
},
|
||||
// ─── PROJECT SEARCH BAR ─────────────────────────────────────────────────────
|
||||
{
|
||||
"context": "ProjectSearchBar",
|
||||
"bindings": {
|
||||
"ctrl-r": "search::ToggleReplace",
|
||||
},
|
||||
},
|
||||
// ─── PROJECT SEARCH RESULTS ──────────────────────────────────────────────────
|
||||
{
|
||||
"context": "VimControl && !menu",
|
||||
"bindings": {
|
||||
"enter": "editor::OpenExcerpts",
|
||||
},
|
||||
},
|
||||
// ─── PROJECT PANEL (FILE TREE) ───────────────────────────────────────────────
|
||||
{
|
||||
"context": "ProjectPanel && not_editing",
|
||||
"bindings": {
|
||||
"ctrl-e": "project_panel::Toggle",
|
||||
"a": "project_panel::NewFile",
|
||||
"d": "project_panel::Delete",
|
||||
"r": "project_panel::Rename",
|
||||
},
|
||||
},
|
||||
// ─── TERMINAL ───────────────────────────────────────────────────────────────
|
||||
{
|
||||
"context": "Terminal",
|
||||
"bindings": {
|
||||
"ctrl-o": "terminal_panel::Toggle",
|
||||
"ctrl-q": "pane::CloseActiveItem",
|
||||
},
|
||||
},
|
||||
// ─── PANE NAVIGATION (vim-style) ────────────────────────────────────────────
|
||||
{
|
||||
"context": "VimControl && vim_mode == normal && !menu",
|
||||
"bindings": {
|
||||
"ctrl-h": "workspace::ActivatePaneLeft",
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown",
|
||||
},
|
||||
},
|
||||
{
|
||||
"context": "Pane && not_editing",
|
||||
"bindings": {
|
||||
"ctrl-h": "workspace::ActivatePaneLeft",
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown",
|
||||
},
|
||||
},
|
||||
{
|
||||
"context": "Terminal",
|
||||
"bindings": {
|
||||
"ctrl-h": "workspace::ActivatePaneLeft",
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown",
|
||||
},
|
||||
},
|
||||
{
|
||||
"context": "ProjectPanel",
|
||||
"bindings": {
|
||||
"ctrl-h": "workspace::ActivatePaneLeft",
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown",
|
||||
},
|
||||
},
|
||||
// ─── WORKSPACE ──────────────────────────────────────────────────────────────
|
||||
{
|
||||
"context": "Workspace",
|
||||
"bindings": {
|
||||
"ctrl-e": "project_panel::Toggle",
|
||||
"ctrl-o": "terminal_panel::Toggle",
|
||||
"ctrl-p": "file_finder::Toggle",
|
||||
},
|
||||
},
|
||||
// ─── CTRL-W CLOSE → CTRL-W Q ────────────────────────────────────────────────
|
||||
{
|
||||
"context": "Pane",
|
||||
"bindings": { "ctrl-w": null },
|
||||
},
|
||||
{
|
||||
"context": "Workspace",
|
||||
"bindings": { "ctrl-w": null },
|
||||
},
|
||||
{
|
||||
"context": "SettingsWindow",
|
||||
"bindings": { "ctrl-w": null },
|
||||
},
|
||||
{
|
||||
"context": "Pane",
|
||||
"bindings": { "ctrl-w q": "pane::CloseActiveItem" },
|
||||
},
|
||||
{
|
||||
"context": "SettingsWindow",
|
||||
"bindings": { "ctrl-w q": "workspace::CloseWindow" },
|
||||
},
|
||||
{
|
||||
"context": "Workspace",
|
||||
"unbind": {
|
||||
"ctrl-`": "terminal_panel::Toggle",
|
||||
},
|
||||
},
|
||||
{
|
||||
"context": "Workspace",
|
||||
"bindings": {
|
||||
"ctrl-`": "projects::OpenRecent",
|
||||
},
|
||||
},
|
||||
{
|
||||
"context": "Workspace",
|
||||
"unbind": {
|
||||
"ctrl-r": "projects::OpenRecent",
|
||||
},
|
||||
},
|
||||
]
|
||||
@@ -1,161 +0,0 @@
|
||||
{
|
||||
"use_system_window_tabs": false,
|
||||
"window_decorations": "server",
|
||||
// ─── CORE BEHAVIOR ───────────────────────────────────────────────────────────
|
||||
"show_wrap_guides": false,
|
||||
"which_key": { "enabled": true },
|
||||
"cursor_shape": "block",
|
||||
"vim_mode": true,
|
||||
"base_keymap": "VSCode",
|
||||
"restore_on_startup": "last_workspace",
|
||||
"disable_ai": true,
|
||||
"session": { "trust_all_worktrees": true },
|
||||
"telemetry": { "diagnostics": false, "metrics": false },
|
||||
// ─── EDITOR BEHAVIOR ─────────────────────────────────────────────────────────
|
||||
"tab_size": 4,
|
||||
"hard_tabs": true,
|
||||
"soft_wrap": "editor_width",
|
||||
"show_whitespaces": "none",
|
||||
"format_on_save": "off",
|
||||
"use_on_type_format": true,
|
||||
"centered_layout": {
|
||||
"left_padding": 0.15,
|
||||
"right_padding": 0.15,
|
||||
},
|
||||
"indent_guides": {
|
||||
"coloring": "fixed",
|
||||
"line_width": 1,
|
||||
"active_line_width": 2,
|
||||
},
|
||||
"gutter": {
|
||||
"bookmarks": false,
|
||||
"runnables": false,
|
||||
},
|
||||
// ─── FONTS & TEXT RENDERING ──────────────────────────────────────────────────
|
||||
"buffer_font_family": "JetBrainsMono Nerd Font Mono",
|
||||
"buffer_font_size": 15.7,
|
||||
"buffer_font_features": { "liga": false },
|
||||
"buffer_line_height": { "custom": 2.2 },
|
||||
"ui_font_family": "Inter Display",
|
||||
"ui_font_size": 16.5,
|
||||
// ─── THEME & APPEARANCE ──────────────────────────────────────────────────────
|
||||
"icon_theme": "Warm Charmed Icons",
|
||||
"theme": "Kanagawa Wave - No Italics",
|
||||
"theme_overrides": {
|
||||
"VSCode Dark Modern": {
|
||||
"border": "#1e1e1e",
|
||||
"border.variant": "#303030",
|
||||
"title_bar.background": "#1e1e1e",
|
||||
"panel.background": "#1e1e1e",
|
||||
"panel.focused_border": "#bbbbbb",
|
||||
"editor.document_highlight.read_background": "#00000000",
|
||||
"editor.document_highlight.write_background": "#00000000",
|
||||
},
|
||||
},
|
||||
"scrollbar": { "selected_symbol": true, "show": "never" },
|
||||
// ─── TAB BAR & TABS ──────────────────────────────────────────────────────────
|
||||
"tab_bar": {
|
||||
"show": false,
|
||||
"show_nav_history_buttons": false,
|
||||
"show_tab_bar_buttons": false,
|
||||
},
|
||||
"tabs": {
|
||||
"close_position": "left",
|
||||
"file_icons": false,
|
||||
"git_status": false,
|
||||
},
|
||||
// ─── TOOLBAR & STATUS BAR ────────────────────────────────────────────────────
|
||||
"toolbar": {
|
||||
"breadcrumbs": false,
|
||||
"quick_actions": false,
|
||||
"selections_menu": false,
|
||||
"agent_review": false,
|
||||
},
|
||||
"status_bar": {
|
||||
"cursor_position_button": true,
|
||||
"active_language_button": true,
|
||||
},
|
||||
"title_bar": {
|
||||
"show_menus": false,
|
||||
"button_layout": "platform_default",
|
||||
"show_onboarding_banner": false,
|
||||
"show_project_items": false,
|
||||
"show_branch_status_icon": false,
|
||||
"show_branch_name": false,
|
||||
"show_user_picture": false,
|
||||
"show_user_menu": false,
|
||||
"show_sign_in": false,
|
||||
},
|
||||
// ─── PANELS & DOCKS ──────────────────────────────────────────────────────────
|
||||
"project_panel": {
|
||||
"dock": "left",
|
||||
"starts_open": false,
|
||||
"hide_root": true,
|
||||
"bold_folder_labels": true,
|
||||
"button": false,
|
||||
},
|
||||
"outline_panel": { "button": true, "dock": "left" },
|
||||
"git_panel": { "dock": "left" },
|
||||
"collaboration_panel": { "dock": "left" },
|
||||
"terminal": {
|
||||
"dock": "right",
|
||||
"button": false,
|
||||
},
|
||||
"agent": {
|
||||
"dock": "right",
|
||||
"favorite_models": [],
|
||||
"model_parameters": [],
|
||||
},
|
||||
// ─── BUTTONS ─────────────────────────────────────────────────────────────────
|
||||
"search": { "button": true },
|
||||
"debugger": { "button": false },
|
||||
"diagnostics": { "button": false },
|
||||
// ─── GIT INTEGRATION ───────────────────────────────────────────────────────
|
||||
"git": {
|
||||
"blame": {
|
||||
"show_avatar": false
|
||||
},
|
||||
"inline_blame": {
|
||||
"enabled": false
|
||||
},
|
||||
"git_gutter": "tracked_files",
|
||||
"enable_diff": true,
|
||||
"enable_status": true
|
||||
},
|
||||
// ─── LANGUAGE SERVERS ────────────────────────────────────────────────────────
|
||||
"languages": {
|
||||
"PHP": {
|
||||
"language_servers": [
|
||||
"intelephense",
|
||||
"!phpactor",
|
||||
"!phptools",
|
||||
"!outsourced",
|
||||
"tailwindcss-language-server",
|
||||
"...",
|
||||
],
|
||||
},
|
||||
"HTML": {
|
||||
"language_servers": ["!tailwindcss-language-server", "..."],
|
||||
},
|
||||
"CSS": {
|
||||
"language_servers": ["!tailwindcss-language-server", "..."],
|
||||
},
|
||||
"JavaScript": {
|
||||
"language_servers": ["!tailwindcss-language-server", "..."],
|
||||
},
|
||||
"TypeScript": {
|
||||
"language_servers": ["!tailwindcss-language-server", "..."],
|
||||
},
|
||||
"JSON": {
|
||||
"language_servers": ["!json-language-server", "..."],
|
||||
},
|
||||
"Markdown": {
|
||||
"language_servers": [
|
||||
"markdown-oxide",
|
||||
"!tailwindcss-language-server",
|
||||
"!json-language-server",
|
||||
"...",
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user