-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
44 lines (39 loc) · 1.13 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
export DOTFILES="$HOME/.dotfiles"
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="spaceship"
HYPHEN_INSENSITIVE="true"
COMPLETION_WAITING_DOTS="true"
HIST_STAMPS="yyyy-mm-dd"
ZSH_CUSTOM="$DOTFILES/zsh"
SPACESHIP_PROMPT_ORDER=(
user # Username section
dir # Current directory section
host # Hostname section
git # Git section (git_branch + git_status)
hg # Mercurial section (hg_branch + hg_status)
php # PHP section
docker # Docker section
docker_compose # Docker section
exec_time # Execution time
async # Async jobs indicator
line_sep # Line break
jobs # Background jobs indicator
exit_code # Exit code section
sudo # Sudo indicator
char # Prompt character
)
SPACESHIP_USER_SHOW=always
SPACESHIP_PROMPT_ADD_NEWLINE=false
SPACESHIP_CHAR_SYMBOL="❯"
SPACESHIP_CHAR_SUFFIX=" "
plugins=(
composer
fast-syntax-highlighting
git
macos
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh
# You may need to manually set your language environment
export LC_ALL=en_CA.UTF-8
export LANG=en_CA.UTF-8