16 lines
482 B
Plaintext
16 lines
482 B
Plaintext
# Put this on top of ~/.zshrc
|
|
# source ~/.config/zsh/top-zshrc
|
|
|
|
# https://github.com/ohmyzsh/ohmyzsh/issues/5700
|
|
DISABLE_AUTO_TITLE="true"
|
|
# https://github.com/ohmyzsh/ohmyzsh/issues/10291
|
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
|
# https://github.com/ohmyzsh/ohmyzsh/issues/5569
|
|
DISABLE_MAGIC_FUNCTIONS="true"
|
|
|
|
# https://zellij.dev/documentation/integration.html
|
|
if command -v zellij &>/dev/null; then
|
|
ZELLIJ_AUTO_EXIT="true"
|
|
eval "$(zellij setup --generate-auto-start zsh)"
|
|
fi
|