.dotfiles/zsh/.zprofile

10 lines
No EOL
477 B
Bash
Executable file

#!/usr/bin/env zsh
# ~/.zprofile - Login shell configuration (runs once per login)
# Homebrew initialization is handled in .zshenv for VSCode/IDE compatibility
# This file is for login-specific configuration only
# Add custom completion directories to fpath
# Uncomment the directory that exists on your system:
# [[ -d "$HOME/.zsh/site-functions" ]] && fpath=("$HOME/.zsh/site-functions" $fpath)
# [[ -d "$HOME/.zsh/completions" ]] && fpath=("$HOME/.zsh/completions" $fpath)