X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=0cb114d5d2f8fc844a683bf45cd07e78ec480c29;hb=31ba983543edee7aac65d0fad181086011bd292f;hp=666f40ef3a91569a8aaebd11d61abe35e0e6d231;hpb=a142702ea1e1357bffced5f1417fba96186302bc;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index 666f40e..0cb114d 100644 --- a/zsh/rc +++ b/zsh/rc @@ -142,8 +142,8 @@ autoload -Uz zmv # HISTORY SETTINGS # Use history and store it in ~/.zsh/history. -HISTSIZE=50000 -SAVEHIST=50000 +HISTSIZE=1000000 +SAVEHIST=1000000 HISTFILE=~/.zsh/history # Append to the history file instead of overwriting it and do it immediately # when a command is executed. @@ -865,11 +865,6 @@ fi command tig --max-count=200 --branches --remotes --tags "$@" } -# Pipe output through less. -(( $+commands[tree] )) && tree() { - command tree -C "$@" | less -} - # Choose the "best" PDF viewer available: xpdf, then zathura (in the past # zathura was preferred, but recent versions are completely broken: still no # working search and no page-wise scrolling anymore). Also setup completion @@ -889,11 +884,6 @@ elif (( $+commands[zathura] )); then compdef pdf=xpdf fi -# Better viewer for info pages .. just pipe everything into less. -info() { - command info "$@" 2>/dev/null | less -} - # OS SPECIFIC SETTINGS