From 46a4df27af65e5e165a9f59f944c632ab91f2983 Mon Sep 17 00:00:00 2001 From: Logan Gartner Date: Sat, 26 Mar 2022 20:12:44 -0600 Subject: [PATCH] Why wasn't bash_profile included? --- .bash_profile | 5 +++++ .bashrc | 7 +++++-- .gitignore | 1 + 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .bash_profile diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..5545f00 --- /dev/null +++ b/.bash_profile @@ -0,0 +1,5 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/.bashrc b/.bashrc index 4f0618f..de348ca 100644 --- a/.bashrc +++ b/.bashrc @@ -41,9 +41,12 @@ complete -cf sudo complete -cf swallow 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)\]" #PS1="[\\u@\\h: \\w]\$ " #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 + + +# 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 diff --git a/.gitignore b/.gitignore index f2702f1..2d1a6f0 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ !.gitignore !.inputrc !.bashrc +!.bash_profile !.profile !.pam_environment !README.md