1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-18 16:26:50 +00:00
dotfiles/.zshrc
lunax 193b4850ed disable dots
Signed-off-by: lunax <mlunaelumen@gmail.com>
2020-03-09 14:31:45 +01:00

28 lines
519 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="false"
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