Minimalist command-prompt for .bashrc-compatible terminals. Good for a clean-look or enabling more; smaller terminal-windows!
PS1_COLOR="\[$(tput bold)\]"
PS1_RESET="\[$(tput sgr0)\]"
PS1_STYLE=" ${PS1_COLOR}\W${PS1_RESET} "
# all terminals
PS1="$PS1_STYLE"
# some terminals
if [[ "$TERM_PROGRAM" == "vscode" ]]; then PS1="$PS1_STYLE"; fi