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/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) }, 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)"