From f960ff45b41a4de9994882e4dda772b612e6a1a0 Mon Sep 17 00:00:00 2001 From: xesc Date: Sun, 22 Jun 2025 22:33:59 +0200 Subject: [PATCH] fix cursor --- .zshrc | 5 +++++ 1 file changed, 5 insertions(+) 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)