-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
36 lines (31 loc) · 849 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
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt appendhistory autocd extendedglob notify
unsetopt beep
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/pellet_k/.zshrc'
autoload -Uz compinit
compinit
zstyle ':completion:*' menu select
autoload -Uz promptinit
promptinit
prompt elite2 red
typeset -U path
path=(~/.bin $path)
setopt correctall
setopt HIST_IGNORE_DUPS
autoload -U run-help
autoload run-help-git
autoload run-help-svn
autoload run-help-svk
alias help=run-help
alias la="ls -l --color=auto"
alias ls="ls --color=auto"
alias rm="rm -i"
bindkey "^[r" history-incremental-search-backward
# End of lines added by compinstall
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh