🔧 Where my dotfiles lives in harmony and peace, most of the time

:art: Update Zed settings

+19 -19
+5 -5
zed/keymap.json
··· 5 5 "ctrl-ç": [ 6 6 "editor::ToggleComments", 7 7 { 8 - "advance_downwards": false, 9 - }, 8 + "advance_downwards": false 9 + } 10 10 ], 11 11 "ctrl-shift-up": "editor::MoveLineUp", 12 12 "ctrl-shift-down": "editor::MoveLineDown", 13 - "ctrl-shift-d": "editor::DuplicateSelection", 14 - }, 15 - }, 13 + "ctrl-shift-d": "editor::DuplicateSelection" 14 + } 15 + } 16 16 ]
+14 -14
zed/settings.json
··· 4 4 "terminal": { 5 5 "copy_on_select": true, 6 6 "font_family": "JetBrainsMono Nerd Font", 7 - "font_size": 14.0, 7 + "font_size": 14.0 8 8 }, 9 9 "inline_code_actions": true, 10 10 "tabs": { 11 11 "git_status": true, 12 12 "file_icons": true, 13 - "show_diagnostics": "errors", 13 + "show_diagnostics": "errors" 14 14 }, 15 15 "collaboration_panel": { 16 - "button": false, 16 + "button": false 17 17 }, 18 18 "always_treat_brackets_as_autoclosed": true, 19 19 "lsp": { 20 20 "basedpyright": { 21 21 "settings": { 22 22 "python": { 23 - "pythonPath": ".venv/bin/python", 23 + "pythonPath": ".venv/bin/python" 24 24 }, 25 25 "basedpyright.analysis": { 26 26 "typeCheckingMode": "standard", ··· 29 29 "callArgumentNames": true, 30 30 "functionReturnTypes": true, 31 31 "genericTypes": true, 32 - "variableTypes": true, 33 - }, 34 - }, 35 - }, 36 - }, 32 + "variableTypes": true 33 + } 34 + } 35 + } 36 + } 37 37 }, 38 38 "soft_wrap": "editor_width", 39 39 "scrollbar": { 40 40 "axes": { 41 - "horizontal": false, 42 - }, 41 + "horizontal": false 42 + } 43 43 }, 44 44 "diagnostics": { 45 45 "include_warnings": true, 46 46 "inline": { 47 47 "enabled": true, 48 48 "padding": 10, 49 - "min_column": 60, 50 - }, 49 + "min_column": 60 50 + } 51 51 }, 52 52 "autosave": "on_focus_change", 53 53 "ensure_final_newline_on_save": true, 54 54 "format_on_save": "on", 55 55 "auto_update": false, 56 56 "theme": "Catppuccin Frappé", 57 - "icon_theme": "Catppuccin Frappé", 57 + "icon_theme": "Catppuccin Frappé" 58 58 }