Merge remote-tracking branch 'refs/remotes/origin/master'
This commit is contained in:
commit
84e16f9fd2
1 changed files with 8 additions and 2 deletions
10
.zshrc
10
.zshrc
|
@ -3,15 +3,20 @@
|
||||||
zstyle ':completion:*' completer _complete _ignored
|
zstyle ':completion:*' completer _complete _ignored
|
||||||
zstyle :compinstall filename '~/.zshrc'
|
zstyle :compinstall filename '~/.zshrc'
|
||||||
|
|
||||||
|
# Completion
|
||||||
autoload -Uz compinit
|
autoload -Uz compinit
|
||||||
compinit
|
compinit
|
||||||
HISTFILE=~/.zsh_history
|
HISTFILE=~/.zsh_history
|
||||||
HISTSIZE=5000000
|
HISTSIZE=5000000
|
||||||
SAVEHIST=5000000
|
SAVEHIST=5000000
|
||||||
setopt appendhistory beep nomatch notify autocd histignoredups
|
setopt appendhistory beep nomatch notify autocd histignoredups correct autopushd pushdsilent pushdtohome pushdignoredups pushdminus
|
||||||
|
|
||||||
|
# emacs keybindings
|
||||||
bindkey -e
|
bindkey -e
|
||||||
|
|
||||||
|
# Prevent need to reset terminal
|
||||||
|
ttyctl -f
|
||||||
|
|
||||||
# Arrows in the Completition menu
|
# Arrows in the Completition menu
|
||||||
zstyle ':completion:*' menu select
|
zstyle ':completion:*' menu select
|
||||||
|
|
||||||
|
@ -38,4 +43,5 @@ precmd() {
|
||||||
# Report CPU usage for commands running longer than 1 second
|
# Report CPU usage for commands running longer than 1 second
|
||||||
REPORTTIME=1
|
REPORTTIME=1
|
||||||
|
|
||||||
. ~/.profile
|
# Dirstack
|
||||||
|
DIRSTACKSIZE=20
|
||||||
|
|
Loading…
Reference in a new issue