From: W. Trevor King Date: Thu, 20 Mar 2014 00:16:43 +0000 (-0700) Subject: .bash_profile: Use tabs for indenting X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5191c9fe679248957729c061f31ba6a6ce18bb82;p=dotfiles-public.git .bash_profile: Use tabs for indenting Then folks can set tab-width to whatever they like. --- diff --git a/src/.bash_profile b/src/.bash_profile index cc0a755..a60b37d 100644 --- a/src/.bash_profile +++ b/src/.bash_profile @@ -5,12 +5,12 @@ PATH="${PATH}":/usr/sbin:/sbin # set PATH so it includes user's local bin if it exists if [ -d "${HOME}"/.local/bin ]; then - PATH="${HOME}"/.local/bin:"${PATH}" + PATH="${HOME}"/.local/bin:"${PATH}" fi # set PATH so it includes user's personal bin if it exists if [ -d "${HOME}"/bin ]; then - PATH="${HOME}"/bin:"${PATH}" + PATH="${HOME}"/bin:"${PATH}" fi # The following line runs your .bashrc and is recommended by the bash @@ -23,5 +23,5 @@ fi # http://bsdcalendar.sourceforge.net/ (Gentoo: app-misc/calendar) CALENDAR=$(command -v calendar) if [ -n "${CALENDAR}" ] && [ -f ~/.calendar/calendar ]; then - calendar + calendar fi