forked from mhartington/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
87 lines (64 loc) · 2.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/zsh
export EDITOR=vim
export PATH=$HOME/.local/bin:/usr/local/bin:$PATH
source $HOME/.cargo/env
# Hisory
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=$HOME/.zsh_history
setopt HIST_IGNORE_SPACE # commands starting w/ a space don't go into history
setopt INC_APPEND_HISTORY # Incrementally append history to file
setopt EXTENDED_HISTORY # Save the timestamp and duration of commands to history file
################################################################################
# Antigen
################################################################################
source ~/.dotfiles/antigen.zsh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
#antigen bundle heroku
antigen bundle pip
antigen bundle lein
antigen bundle command-not-found
# Syntax highlighting bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
SPACESHIP_VI_MODE_SHOW=true
SPACESHIP_VI_MODE_PREFIX=""
SPACESHIP_VI_MODE_SUFFIX="$SPACESHIP_PROMPT_DEFAULT_SUFFIX"
SPACESHIP_VI_MODE_INSERT="● "
SPACESHIP_VI_MODE_NORMAL="⛶ "
SPACESHIP_VI_MODE_COLOR="white"
antigen theme https://github.com/denysdovhan/spaceship-prompt spaceship
# Tell Antigen that you're done.
antigen apply
################################################################################
# Bindings
################################################################################
# Vi keys
export KEYTIMEOUT=1
bindkey -v
bindkey '^R' history-incremental-search-backward
bindkey "^P" up-line-or-search
bindkey "^N" down-line-or-search
bindkey "^H" beginning-of-line
bindkey "^L" end-of-line
bindkey "^V" edit-command-line
# other bindings
bindkey "^[." insert-last-word
spaceship_vi_mode_enable
##########################################################
# Completion
##########################################################
fpath=( "${fpath[@]}" ~/.zfunc )
compinit
################################################################################
# Alias
################################################################################
alias asciidocs -f /usr/share/asciidoc/diag-filter.conf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
################################################################################
# Local machine configuration
################################################################################
[ -f ~/.local.zsh ] && source ~/.local.zsh