-
Notifications
You must be signed in to change notification settings - Fork 6
/
zshrc
32 lines (25 loc) · 903 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
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
autoload -U compinit
compinit
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
[[ -s "${ZDOTDIR:-$HOME}/.tmuxinator/scripts/tmuxinator" ]] && source "${ZDOTDIR:-$HOME}/.tmuxinator/scripts/tmuxinator"
if [[ -s "${ZDOTDIR:-$HOME}/.aliasrc" ]]; then
source "${ZDOTDIR:-$HOME}/.aliasrc"
fi
bindkey -M vicmd '/' history-incremental-pattern-search-backward
bindkey -M vicmd '?' history-incremental-pattern-search-forward
bindkey -M viins '^R' history-incremental-pattern-search-backward
bindkey -M viins '^F' history-incremental-pattern-search-forward
echo -e "\033]P44040ff\033\\"
if [[ -s "${ZDOTDIR:-$HOME}/.zshrc-mine" ]]; then
source "${ZDOTDIR:-$HOME}/.zshrc-mine"
fi
# Customize to your needs...