updated antidote

This commit is contained in:
eeleater 2023-10-05 15:14:21 +02:00
parent 6100d79be7
commit f1ed7f6496
4 changed files with 205 additions and 18 deletions

View file

@ -7,12 +7,13 @@ eval "$potentialBanner[$RANDOM%$#potentialBanner+1]"
function source () { test -r "$1" && builtin source "$1" }
stty -ixon
# local env exports
source "$XDG_DATA_HOME"/zsh/config/env.zsh
# completion stuff
source "$ZDOTDIR"/files/compinit.zsh
source "$ZDOTDIR"/files/bashcomps.zsh
source "$ZDOTDIR"/files/sshcomp.zsh
# antidote
@ -26,3 +27,11 @@ source "$ZDOTDIR"/files/evalstuff.zsh
source "$ZDOTDIR"/files/aliases.zsh
source "$ZDOTDIR"/files/functions.zsh
source "$ZDOTDIR"/files/distroicon.zsh
# bash completions
source "$ZDOTDIR"/files/bashcomps.zsh
# theme
potentialTheme=('atomic.omp.json' 'emodipt-extend.omp.json' 'kali.omp.json' 'lambda.omp.json' 'nordtron.omp.json' 'pure.omp.json' 'uew.omp.json')
export POSH_THEME="$XDG_DATA_HOME/omp/themes/$potentialTheme[$RANDOM%$#potentialTheme+1]"
eval "$(oh-my-posh init zsh)"