diff --git a/sub/alacritty/alacritty.yml b/sub/alacritty/alacritty.yml index bda3095..0230b66 100644 --- a/sub/alacritty/alacritty.yml +++ b/sub/alacritty/alacritty.yml @@ -19,9 +19,6 @@ env: key_bindings: - { key: Return, mods: Control|Shift, action: SpawnNewInstance } - { key: F11, action: ToggleFullScreen } - - { key: H, mods: Control, chars: "\x1bb" } # one word left - - { key: L, mods: Control, chars: "\x1bf" } # one word right - live_config_reload: true diff --git a/sub/zsh/options b/sub/zsh/options index bf30fff..457b226 100644 --- a/sub/zsh/options +++ b/sub/zsh/options @@ -25,3 +25,8 @@ bindkey '^[[6~' end-of-buffer-or-history # page down bindkey '^[[H' beginning-of-line # home bindkey '^[[F' end-of-line # end bindkey '^[[Z' undo # shift + tab undo last action +bindkey '`' autosuggest-accept +bindkey '^K' up-line-or-history +bindkey '^J' down-line-or-history +bindkey '^E' vi-forward-word +bindkey '^B' vi-backward-word diff --git a/sub/zsh/plugin b/sub/zsh/plugin index 9678b4b..3031ed6 100644 --- a/sub/zsh/plugin +++ b/sub/zsh/plugin @@ -7,4 +7,3 @@ so ~/.subzsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh so ~/.subzsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh so ~/.subzsh/plugins/hlissner/zsh-autopair/autopair.zsh -bindkey '`' autosuggest-accept