diff --git a/config/zed/keymap.json b/config/zed/keymap.json index e69de29..feaf963 100644 --- a/config/zed/keymap.json +++ b/config/zed/keymap.json @@ -0,0 +1,16 @@ +[ + { + "context": "Global", + "bindings": {} + }, + { + "context": "(VimControl && !menu) || Dock", + "bindings": { + "ctrl-h": ["workspace::ActivatePaneInDirection", "Left"], + "ctrl-l": ["workspace::ActivatePaneInDirection", "Right"], + "ctrl-k": ["workspace::ActivatePaneInDirection", "Up"], + "ctrl-j": ["workspace::ActivatePaneInDirection", "Down"], + "ctrl-p": "file_finder::Toggle" + } + } +] diff --git a/config/zed/settings.json b/config/zed/settings.json index 3a708c8..ca8a39b 100644 --- a/config/zed/settings.json +++ b/config/zed/settings.json @@ -14,8 +14,12 @@ "vim_mode": true, "shell": "system", "tab_size": 2, + "buffer_font_family": "Berkeley Mono", + "buffer_font_size": 14, + "buffer_line_height": "standard", "terminal": { - "font_family": "MonoLisa Nerd Font", - "font_size": 15 - } + "font_family": "BerkeleyMono Nerd Font", + "font_size": 14 + }, + "tab_bar": { "show": false } }