mirror of
https://gitlab.com/mlunax/dotfiles.git
synced 2025-04-18 16:26:50 +00:00
28 lines
518 B
Bash
28 lines
518 B
Bash
export TERM="xterm-256color"
|
|
export OTHER=$HOME/.zsh
|
|
export ZSH=$HOME/.oh-my-zsh
|
|
export ZSH_THEME="powerlevel9k/powerlevel9k"
|
|
source $OTHER/powerlevel_settings.sh
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
COMPLETION_WAITING_DOTS="true"
|
|
|
|
plugins=(git docker)
|
|
|
|
export EDITOR=nano
|
|
export JAVA_HOME=
|
|
|
|
for f in $OTHER/*.zsh; do
|
|
if [ -f $f ]; then
|
|
source $f
|
|
fi
|
|
done
|
|
|
|
if [ -d "$HOME/.zsh-custom" ]; then
|
|
for f in $HOME/.zsh-custom/*; do
|
|
if [ -f $f ]; then
|
|
source $f
|
|
fi
|
|
done
|
|
fi
|
|
autoload -Uz compinit && compinit -i
|