From 59c1e82c7c134ced1ca0feeea52e54d9ae4c6a40 Mon Sep 17 00:00:00 2001 From: binaryDiv Date: Mon, 25 May 2020 02:50:28 +0200 Subject: [PATCH] .bashrc: add option histappend, set HISTSIZE=1000, HISTFILESIZE=2000 --- .bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bashrc b/.bashrc index 0bb9317..65366e1 100644 --- a/.bashrc +++ b/.bashrc @@ -8,7 +8,10 @@ # Bash settings set -o noclobber shopt -s checkwinsize +shopt -s histappend export HISTCONTROL=ignoreboth +export HISTSIZE=1000 +export HISTFILESIZE=2000 export PROMPT_DIRTRIM=3 # Color output and default options