From 6ac298b4007bb1453cba5d6931810f5b01b04430 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Thu, 28 May 2020 21:11:52 -0400 Subject: [PATCH] bash: Remove newline after prompt Been using a simpler prompt a lot of the time, and grew fond of the terser prompt. --- bash/bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/bashrc b/bash/bashrc index 75188fa..2e75000 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -13,7 +13,7 @@ HISTSIZE=10000 # Max lines in history (in memory) HISTFILESIZE=200000 # Max size of the history file HISTIGNORE=fg:pwd:ls # Don't store common commands in history HISTCONTROL=ignoreboth # Don't store duped / whitespace-led commands in history -PROMPT_COMMAND="echo; history -a" # Record history after each command +PROMPT_COMMAND="history -a" # Record history after each command # Includes include() { [ -r "$1" ] && source "$1"; } -- libgit2 0.28.4