Skip to content

Commit

Permalink
atuin: Don't overwrite up-arrow
Browse files Browse the repository at this point in the history
This is just terrible UX if you want to quickly fire up the previous
command again. Only bind atuin to Ctrl+r instead.

refs: atuinsh/atuin#798
refs: atuinsh/atuin#358
refs: atuinsh/atuin#51
  • Loading branch information
vimpostor committed Aug 11, 2023
1 parent 10ed590 commit 3c2ac36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions zsh/.zshenv
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export TDESKTOP_DISABLE_TRAY_COUNTER=1
export KEYTIMEOUT=1
export FZF_COMPLETION_TRIGGER='~~'
export FZF_DEFAULT_OPTS="--history=$HOME/.cache/.fzf_history"
export ATUIN_NOBIND=1
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
export BAT_THEME=ansi
export LDFLAGS="-fuse-ld=mold"
Expand Down
1 change: 1 addition & 0 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -146,5 +146,6 @@ function gta() {
git tag -se -m "$(basename "$(git rev-parse --show-toplevel)") ${*#v}" "$*" && git --no-pager tag -n "$*"
}

bindkey '^r' _atuin_search_widget
# complete autosuggestions with <c-space>
bindkey '^ ' autosuggest-accept

0 comments on commit 3c2ac36

Please sign in to comment.