bar cursor in zsh
This commit is contained in:
parent
019e163227
commit
0ee0b77537
2 changed files with 10 additions and 0 deletions
|
@ -69,6 +69,10 @@ return {
|
|||
bottom = 0,
|
||||
},
|
||||
|
||||
default_cursor_style = 'SteadyBlock',
|
||||
cursor_thickness = "3px",
|
||||
cursor_blink_rate = 0,
|
||||
|
||||
enable_wayland = true,
|
||||
enable_tab_bar = false,
|
||||
tab_bar_at_bottom = true,
|
||||
|
|
6
.zshrc
6
.zshrc
|
@ -126,6 +126,12 @@ rg() {
|
|||
/usr/bin/rg -p "$@" | bat
|
||||
}
|
||||
|
||||
fix_cursor() {
|
||||
echo -ne '\e[5 q'
|
||||
}
|
||||
|
||||
precmd_functions+=(fix_cursor)
|
||||
|
||||
|
||||
## Prompt
|
||||
eval "$(starship init zsh)"
|
||||
|
|
Loading…
Reference in a new issue