8 lines
149 B
Bash
8 lines
149 B
Bash
|
|
#!/bin/zsh
|
||
|
|
|
||
|
|
# `zsh`-specific configurations
|
||
|
|
|
||
|
|
|
||
|
|
# Load configuration files common to all kinds of shells
|
||
|
|
[ -f "$HOME/.profile" ] && . "$HOME/.profile"
|