From 8ddd54be3581da427ef1a15f8743fae1cd5c5025 Mon Sep 17 00:00:00 2001 From: Dmitry Fisenko Date: Fri, 12 Jul 2024 10:09:21 -0400 Subject: [PATCH 1/2] Update cfg_keys.lua --- config/wezterm/cfg_keys.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/wezterm/cfg_keys.lua b/config/wezterm/cfg_keys.lua index 9172f24..c2312ec 100644 --- a/config/wezterm/cfg_keys.lua +++ b/config/wezterm/cfg_keys.lua @@ -9,6 +9,8 @@ function M.setup(cfg) cfg.keys = { { key = "Escape", mods = "CTRL", action = wezterm.action.ShowDebugOverlay }, + + { key = "w", mods = "CMD", action = wezterm.action.CloseCurrentTab({ confirm = true }) }, { key = "t", mods = "ALT", action = wezterm.action_callback(utils.theme_cycler) }, { key = "[", mods = "LEADER", action = act.ActivateTabRelative(-1) }, From d88e015564c5473303d8a0dc749cc391c750da10 Mon Sep 17 00:00:00 2001 From: Dmitry Fisenko Date: Tue, 16 Jul 2024 19:16:48 -0400 Subject: [PATCH 2/2] feat(atuin): add atuin --- brew/brewfile | 1 + config/zsh/zshrc.zsh | 1 + 2 files changed, 2 insertions(+) diff --git a/brew/brewfile b/brew/brewfile index 4d226f9..2ea0838 100644 --- a/brew/brewfile +++ b/brew/brewfile @@ -20,4 +20,5 @@ brew "tree" brew "wget" brew "duf" brew "pwgen" +brew "atuin" cask "wezterm" diff --git a/config/zsh/zshrc.zsh b/config/zsh/zshrc.zsh index 17378c1..aa712fc 100644 --- a/config/zsh/zshrc.zsh +++ b/config/zsh/zshrc.zsh @@ -69,4 +69,5 @@ for f in $ZSH_CONFIG_HOME/path/*.path.sh; do source $f; done for f in $ZSH_CONFIG_HOME/init/*.init.sh; do source $f; done eval "$(starship init zsh)" +eval "$(atuin init zsh --disable-up-arrow)"