diff --git a/.zshrc b/.zshrc index 17c7de6..f6db3ad 100755 --- a/.zshrc +++ b/.zshrc @@ -63,3 +63,8 @@ if $(which zoxide > /dev/null); then eval "$(zoxide init zsh --cmd c)" fi +_fix_cursor() { + echo -ne '\e[3 q' +} + +precmd_functions+=(_fix_cursor)