You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
278 B
19 lines
278 B
set -o vi
|
|
|
|
export MT_EDITOR=nvim
|
|
export VISUAL=nvim
|
|
|
|
eval "$(starship init zsh)"
|
|
|
|
f() {
|
|
fff "$@"
|
|
cd "$(cat "${XDG_CACHE_HOME:=${HOME}/.cache}/fff/.fff_d")"
|
|
}
|
|
|
|
export PATH=~/cp:$PATH
|
|
|
|
resetcursor() {
|
|
printf '\033]50;CursorShape=1\x7'
|
|
}
|
|
export PS1="$(resetcursor)$PS1"
|
|
|