From e672d8dad1aff70884e3cf3408512cc1446213ed Mon Sep 17 00:00:00 2001 From: xfy Date: Wed, 20 Nov 2024 08:58:18 +0800 Subject: [PATCH] update macos wezterm key bindings --- .gitignore | 1 + wezterm/macos/wezterm.lua | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 51b25a1..9c64b8d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ lazygit/state.yml tmux/plugins **/*/mysql +**/*/.DS_Store diff --git a/wezterm/macos/wezterm.lua b/wezterm/macos/wezterm.lua index aae2f4b..a5e3897 100644 --- a/wezterm/macos/wezterm.lua +++ b/wezterm/macos/wezterm.lua @@ -35,4 +35,9 @@ config.hide_tab_bar_if_only_one_tab = true config.color_scheme = "Catppuccin Mocha" config.font_size = 16 +-- keys +config.keys = { + { key = "l", mods = "ALT", action = wezterm.action.ShowLauncher }, +} + return config