Merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
finga 2018-05-30 10:22:44 +02:00
commit 84e16f9fd2

10
.zshrc
View file

@ -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