18 lines
458 B
Plaintext
18 lines
458 B
Plaintext
# Firstly, load the common customization script.
|
|
. --autoload --no-alias initialization/common
|
|
|
|
LANG=pl_PL.UTF-8
|
|
|
|
set -o vi
|
|
|
|
[ -e ~/.config/shellconfig/aliases.sh ] && . ~/.config/shellconfig/aliases.sh
|
|
|
|
# Clear the screen with Ctrl-L.
|
|
bindkey --emacs '\^L' clear-and-redraw-all
|
|
bindkey --vi-insert '\^L' clear-and-redraw-all
|
|
bindkey --vi-command '\^L' clear-and-redraw-all
|
|
|
|
# And add your own customization below.
|
|
|
|
eval "$(zoxide init posix --hook prompt)"
|