mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
14 lines
347 B
Bash
14 lines
347 B
Bash
# zprofile, called for login shells
|
|
|
|
# dotfiles locations
|
|
DOTFILES_HOME_DIR="$(cd -P "$(dirname "$(readlink ~/.zprofile)")" && pwd)"
|
|
DOTFILES_ROOT_DIR="$( dirname "$DOTFILES_HOME_DIR" )"
|
|
DOTFILES_ZSH_DIR="$DOTFILES_ROOT_DIR/zsh"
|
|
|
|
emulate sh
|
|
source ~/.profile
|
|
emulate zsh
|
|
|
|
# zshrc will be called automatically for interactive shells
|
|
|
|
# vim: ft=zsh
|