-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzshrc.sh
More file actions
45 lines (27 loc) · 820 Bytes
/
zshrc.sh
File metadata and controls
45 lines (27 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# zshrc.sh
# Z SHELL CONFIGURATION
# Instructions: amend the local ~/.zshrc with the line: source ~/dotfiles/zshrc.sh
# NOTE: the .sh file extension is so it is identified as a shell script
# ------------------------ #
# SHELL
SHELL_CONFIG_PATH="${HOME}/dotfiles/shell"
# Mac specific settings including Homebrew and Mise
source $SHELL_CONFIG_PATH/mac.sh
# Prompt
source $SHELL_CONFIG_PATH/prompt.sh
# Text editor
source $SHELL_CONFIG_PATH/editor.sh
# Aliases
source $SHELL_CONFIG_PATH/aliases_git.sh
source $SHELL_CONFIG_PATH/aliases_ruby.sh
# ------------------------ #
# PRINT MESSAGE
MESSAGE="%F{14}
_/_/_/_/_/ _/
_/ _/_/_/ _/_/_/
_/ _/_/ _/ _/
_/ _/_/ _/ _/
_/_/_/_/_/ _/_/_/ _/ _/
%f"
print -P ${MESSAGE}
# --- END --- #