forked from JDevlieghere/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
43 lines (33 loc) · 756 Bytes
/
Copy path.zshrc
File metadata and controls
43 lines (33 loc) · 756 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
# Path to oh-my-zsh installation
export ZSH=$HOME/.oh-my-zsh
# Theme
ZSH_THEME="ys"
# How often to auto-update (in days)
export UPDATE_ZSH_DAYS=7
# Enable command auto-correction
ENABLE_CORRECTION="true"
# Command execution time stamp shown in the history command output
HIST_STAMPS="yyyy-mm-dd"
# Plugins
plugins=(git brew osx tmux)
# Oh-My-Zsh
source $ZSH/oh-my-zsh.sh
alias zshconfig="vim ~/.zshrc"
alias ohmyzsh="vim ~/.oh-my-zsh"
# Source dotfiles
source ~/.aliases
source ~/.exports
source ~/.functions
# Start SSH Agent
if [ -z "$SSH_AUTH_SOCK" ] ;
then
eval `ssh-agent -s`
ssh-add
fi
# Source fzf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# Configuration not part of the repository
if [[ -a ~/.localrc ]]
then
source ~/.localrc
fi