1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-18 16:26:50 +00:00
dotfiles/.zshrc
2020-01-25 01:53:14 +01:00

29 lines
535 B
Bash

export TERM="xterm-256color"
export OTHER=$HOME/.zsh
export OTHER=.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