Why wasn't bash_profile included?

This commit is contained in:
Logan G 2022-03-26 20:12:44 -06:00
parent 0bf2f08c3f
commit 46a4df27af
Signed by: logan
GPG key ID: E328528C921E7A7A
3 changed files with 11 additions and 2 deletions

5
.bash_profile Normal file
View file

@ -0,0 +1,5 @@
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc

View file

@ -41,9 +41,12 @@ complete -cf sudo
complete -cf swallow complete -cf swallow
complete -cf sw complete -cf sw
eval "$(thefuck --alias)"
export PS1="\[\033[38;5;208m\]\u\[$(tput sgr0)\]@\h:\[$(tput sgr0)\]\[\033[38;5;32m\][\w]\[$(tput sgr0)\]\\$ \[$(tput sgr0)\]" export PS1="\[\033[38;5;208m\]\u\[$(tput sgr0)\]@\h:\[$(tput sgr0)\]\[\033[38;5;32m\][\w]\[$(tput sgr0)\]\\$ \[$(tput sgr0)\]"
#PS1="[\\u@\\h: \\w]\$ " #PS1="[\\u@\\h: \\w]\$ "
#PS1="\033[33m[\\u@\\h: \033[33m\\w\033[33m]\033[0m\$ " #PS1="\033[33m[\\u@\\h: \033[33m\\w\033[33m]\033[0m\$ "
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh [ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
# BEGIN_KITTY_SHELL_INTEGRATION
if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi
# END_KITTY_SHELL_INTEGRATION

1
.gitignore vendored
View file

@ -14,6 +14,7 @@
!.gitignore !.gitignore
!.inputrc !.inputrc
!.bashrc !.bashrc
!.bash_profile
!.profile !.profile
!.pam_environment !.pam_environment
!README.md !README.md