-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
41 lines (32 loc) · 866 Bytes
/
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
#!/bin/bash
# ln -s ~/.dotfiles/rjchatfield.zsh-theme $ZSH/themes
# ln -s ~/.dotfiles/gitconfig ~/.gitconfig
# ln -s ~/.dotfiles/zshrc ~/.zshrc
# # Set custom prompt
# setopt PROMPT_SUBST
# autoload -U promptinit
# promptinit
# prompt grb
# # Initialize completion
# autoload -U compinit
# compinit
plugins=(git sublime osx brew bower zsh-syntax-highlighting)
ZSH_THEME="rjchatfield"
HIST_STAMPS="dd/mm/yyyy"
export ZSH=$HOME/.oh-my-zsh
source $ZSH/oh-my-zsh.sh
# Setup zsh-autosuggestions
source ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions/autosuggestions.zsh
zle-line-init()
{
zle autosuggest-start
}
zle -N zle-line-init
bindkey '^T' autosuggest-toggle
source ~/.dotfiles/functions
source ~/.dotfiles/exports
source ~/.dotfiles/aliases
# https://github.com/rupa/z
source /usr/local/bin/z.sh
# SOURCE HIDDEN VERSION
source_hidden_dotfiles "zshrc"