diff options
Diffstat (limited to '.config/zsh')
-rw-r--r-- | .config/zsh/.zshrc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 417f268..6e66b3e 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -4,6 +4,8 @@ autoload -U colors && colors # Load colors autoload -Uz vcs_info precmd_vcs_info() { vcs_info } precmd_functions+=( precmd_vcs_info ) +# neovim beam cursor fix +function precmd { print -Pn "\e[ q" } zstyle ':vcs_info:git:*' formats "[%b]%{$fg[yellow]%}%u" zstyle ':vcs_info:*' check-for-changes true zstyle ':vcs_info:*' unstagedstr '*' |