-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
58 lines (42 loc) · 1.44 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Pure
fpath+=("$HOME/.oh-my-zsh/pure")
autoload -U promptinit; promptinit
# change the path color
zstyle :prompt:pure:path color white
prompt pure
# fasd, for theme
# eval "$(fasd --init auto)"
# For history command output
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
HIST_STAMPS="yyyy-mm-dd" # the most logical format :-)
# other optional plugins: osx, brew, ssh-agent
# too many plugins can slow down startup time
plugins=(git zsh-autosuggestions z)
# ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=59'
# User configuration
# alias c='fasd_cd -d'
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# default editor
export EDITOR='vim'
# run tmux upon startup
# if [ "$TMUX" = "" ]; then tmux; fi
# Some paths added due to local problems -- ignore
# export GOPATH=$HOME/git-repos/15440/15440-P3/
# export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python3.7/dist-packages/
# export PATH=/usr/local/smlnj/bin:$PATH
# export TERM=xterm-256color
# export PATH=$PATH:/usr/local/go/bin
neofetch
source $ZSH/oh-my-zsh.sh
# Alias and Functions
# Recommended directory $ZSH_CUSTOM/
source $HOME/.zsh_functions.sh
source $HOME/.aliases.sh