From b1ca8d8684bd800efec9f4bcceb5c956a4d3f4ce Mon Sep 17 00:00:00 2001 From: MountainMan <43313373+MountainMan1312@users.noreply.github.com> Date: Sun, 2 Apr 2023 21:09:38 -0400 Subject: Fix formatting in `dotfiles/home/.bashrc` For whatever reason, I used 75 chars when I wrote the `.bashrc`. This is wrong, it should be 74. This change fixes it. --- home/.bashrc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'home') diff --git a/home/.bashrc b/home/.bashrc index e80f8bc..6610b34 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -8,7 +8,7 @@ if [[ $- != *i* ]] ; then fi -########################################################################## +######################################################################### # PS1 - Primary prompt displayed before each command #################################################### # The PS1 prompt is constructed piece-by-piece by concatenating each @@ -20,7 +20,7 @@ fi # # Example of what the prompt should look like: # [1] [2023-03-28 16:02:55] [user host] [/etc/portage] > -########################################################################## +######################################################################### # Set colors for easy reading PS1_COLOR_RESET="\[\e[0m\]" PS1_COLOR_GREY="\[\e[90m\]" @@ -63,19 +63,19 @@ PS1+="$PS1_COLOR_MAIN] $PS1_COLOR_RESET" # ] PS1+="$PS1_COLOR_MAIN[$PS1_COLOR_RESET" # [ PS1+="$PS1_COLOR_CYAN\w$PS1_COLOR_RESET" # DIR PS1+="$PS1_COLOR_MAIN] > $PS1_COLOR_RESET" # ] > -########################################################################## +######################################################################### -########################################################################## +######################################################################### # PS2 - Secondary prompt displayed when a command needs more input ################################################################## PS2=" > " -########################################################################## +######################################################################### -########################################################################## +######################################################################### # Aliases ######### alias wget="wget -c --tries=10 --timeout=10 --waitretry=30s" alias ls="exa -1aFghlU --color=always --sort=name --time-style=iso" -########################################################################## +######################################################################### -- cgit v1.2.3