source global aliases if available, omz: switch theme
This commit is contained in:
parent
a1d4791997
commit
b950584c54
1 changed files with 6 additions and 1 deletions
|
@ -8,7 +8,7 @@ export ZSH="$HOME/.oh-my-zsh"
|
||||||
# load a random theme each time oh-my-zsh is loaded, in which case,
|
# 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
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
||||||
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
# 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
|
# Set list of themes to pick from when loading at random
|
||||||
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||||
|
@ -113,3 +113,8 @@ source <(fzf --zsh)
|
||||||
HISTFILE=~/.zsh_history
|
HISTFILE=~/.zsh_history
|
||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
HISTSAVE=10000
|
HISTSAVE=10000
|
||||||
|
|
||||||
|
# Setup global aliases if available
|
||||||
|
if [ -f /etc/bash.bash_aliases ]; then
|
||||||
|
source /etc/bash.bash_aliases
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue