mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
16 lines
358 B
Bash
Executable file
16 lines
358 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
ZSH_DOTFILES="${0:h}"
|
|
|
|
autoload -U colors && colors
|
|
|
|
for script in functions options path env aliases plugins completion zle prompt colorscheme; do
|
|
source "$ZSH_DOTFILES/$script.zsh"
|
|
done
|
|
|
|
# add colon after MANPATH so that it doesn't overwrite system MANPATH
|
|
MANPATH="$MANPATH:"
|
|
|
|
command_exists rbenv && eval "$(rbenv init -)"
|
|
|
|
welcome
|