blob: 28e20bb64c12a61e5d3e8094cf8680dd0b767135 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
export PATH=$HOME/bin:/usr/local/bin:/opt/local/bin:/opt/local/sbin:$PATH
echo "Welcome back, $USER"
# use vi bindings for terminal input
set -o vi
# aliases
source $HOME/pc_settings/.w_aliases.sh
# functions
source $HOME/pc_settings/.w_functions.sh
# syntax highlighting for CLI; if not installed, run the following command
# brew install zsh-syntax-highlighting
|