diff --git a/.config/zsh/config.d/ctrlz-fg b/.config/zsh/config.d/ctrlz-fg new file mode 100644 index 0000000..9c48a40 --- /dev/null +++ b/.config/zsh/config.d/ctrlz-fg @@ -0,0 +1,4 @@ +# ctrl+z to foreground previously backgrounded tasks +_zsh_cli_fg() { fg; } +zle -N _zsh_cli_fg +bindkey '^Z' _zsh_cli_fg