๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add zed config

kacaii d980a03b 4762b806

+66
+41
.config/zed/keymap.json
··· 1 + // Zed keymap 2 + // 3 + // For information on binding keys, see the Zed 4 + // documentation: https://zed.dev/docs/key-bindings 5 + // 6 + // To see the default key bindings run `zed: open default keymap` 7 + // from the command palette. 8 + [ 9 + { 10 + "context": "Editor && vim_mode == insert", 11 + "bindings": { 12 + "j j": "vim::SwitchToNormalMode", 13 + "ctrl-h": "editor::Backspace", 14 + }, 15 + }, 16 + { 17 + "context": "Editor && vim_mode == normal", 18 + "bindings": { 19 + "space s r": "buffer_search::DeployReplace", 20 + }, 21 + }, 22 + { 23 + "context": "VimControl && !menu || !Editor && !Terminal", 24 + "bindings": { 25 + "ctrl-h": "workspace::ActivatePaneLeft", 26 + "ctrl-l": "workspace::ActivatePaneRight", 27 + "ctrl-k": "workspace::ActivatePaneUp", 28 + "ctrl-j": "workspace::ActivatePaneDown", 29 + 30 + "ctrl-/": "terminal_panel::Toggle", 31 + "space space": "file_finder::Toggle", 32 + "space e": "workspace::ToggleLeftDock", 33 + }, 34 + }, 35 + { 36 + "context": "Terminal", 37 + "bindings": { 38 + "ctrl-/": "terminal_panel::Toggle", 39 + }, 40 + }, 41 + ]
+23
.config/zed/settings.json
··· 1 + // Zed settings 2 + // 3 + // For information on how to configure Zed, see the Zed 4 + // documentation: https://zed.dev/docs/configuring-zed 5 + // 6 + // To see all of Zed's default settings without changing your 7 + // custom settings, run `zed: open default settings` from the 8 + // command palette (cmd-shift-p / ctrl-shift-p) 9 + { 10 + "cursor_blink": false, 11 + "ui_font_family": "Maple Mono", 12 + "buffer_font_weight": 400.0, 13 + "buffer_font_family": "Maple Mono", 14 + "vim_mode": true, 15 + "icon_theme": "Catppuccin Mocha", 16 + "ui_font_size": 16, 17 + "buffer_font_size": 15, 18 + "theme": { 19 + "mode": "system", 20 + "light": "One Light", 21 + "dark": "Catppuccin Mocha (Blur)", 22 + }, 23 + }
+1
.gitignore
··· 1 1 .config/fish/fish_variables 2 + .config/jj/repos
+1
.stow-local-ignore
··· 3 3 \.gitignore 4 4 \.github 5 5 \.tangled 6 + \.config/jj/repos 6 7 fish_variables 7 8 8 9 install.sh