-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.zshrc
32 lines (26 loc) · 1015 Bytes
/
template.zshrc
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
# TO USE THIS CONFIG
# you must have moved the zsh config folder to the proper director
# You must have moved this config to your home folder AND renamed it to .zshrc
# REQUIRED
source $HOME/.config/zsh/base.zsh #import the base that we customize on top of
# * NOTES
# inside $HOME/.config/zsh/
# * ONLY bash.zsh and plugins.zsh are ALWAYS imported
# If $HOME/.config/zsh/overrides.sh is present it gets imported AFTER
# variable declarations in bash.zsh
# * Remember to update below if you want any of the other files imported!
### EXAMPLES ###
# User configuration
# export MANPATH="/usr/local/man:$MANPATH"
# You may need to manually set your language environment
# export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
# export EDITOR='vim'
# else
# export EDITOR='mvim'
# fi
# Machine-specific changes will likey automatically be applied below
# Or recommend to be applied
##### END OF TEMPLATE #####
# Place your customization here