source global aliases if available, omz: switch theme

This commit is contained in:
Philipp 2024-06-19 00:41:53 +02:00
parent a1d4791997
commit b950584c54
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750

View file

@ -8,7 +8,7 @@ export ZSH="$HOME/.oh-my-zsh"
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="robbyrussell"
ZSH_THEME="obraun"
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
@ -113,3 +113,8 @@ source <(fzf --zsh)
HISTFILE=~/.zsh_history
HISTSIZE=10000
HISTSAVE=10000
# Setup global aliases if available
if [ -f /etc/bash.bash_aliases ]; then
source /etc/bash.bash_aliases
fi