diff --git a/ultramarine/shell-config/ultramarine-shell.zsh b/ultramarine/shell-config/ultramarine-shell.zsh index 6b105e6..143da4f 100644 --- a/ultramarine/shell-config/ultramarine-shell.zsh +++ b/ultramarine/shell-config/ultramarine-shell.zsh @@ -10,8 +10,16 @@ source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh bindkey "^[[1;5D" backward-word bindkey "^[[1;5C" forward-word +# Ctrl + Backspace/Delete Kebindings +bindkey '^H' backward-kill-word +bindkey '^[[3;5~' kill-word + +# ALt + Backspack/Delete Keybinds +bindkey "^[[3~" delete-char +bindkey -M emacs '^[[3;3~' kill-word + HISTFILE=~/.zsh_history HISTSIZE=10000 SAVEHIST=10000 setopt appendhistory -setopt SHARE_HISTORY \ No newline at end of file +setopt SHARE_HISTORY