diff options
author | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2024-07-28 23:05:45 -0400 |
---|---|---|
committer | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2024-07-28 23:05:45 -0400 |
commit | 8c4a6f932b129df4f9a63b7b2e2bcaea6f215866 (patch) | |
tree | d51cea169cae19b05025a0b26670a9a09505e8fe /bash/.bash_profile |
Took snapshot of my main dotfiles
Diffstat (limited to 'bash/.bash_profile')
-rw-r--r-- | bash/.bash_profile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/bash/.bash_profile b/bash/.bash_profile new file mode 100644 index 0000000..7fd6523 --- /dev/null +++ b/bash/.bash_profile @@ -0,0 +1,23 @@ +# Load the shell dotfiles, and then some: +# * ~/.path can be used to extend `$PATH`. +# * ~/.extra can be used for other settings you don’t want to commit. + +for file in ~/.{bash_prompt,aliases,functions,path,extra,exports}; do + [[ -r "$file" ]] && [[ -f "$file" ]] && source "$file" +done +unset file + +# Case-insensitive globbing (used in pathname expansion) +shopt -s nocaseglob + +# Append to the Bash history file, rather than overwriting it +shopt -s histappend + +# Autocorrect typos in path names when using `cd` +shopt -s cdspell + +# solarized directory color listings +eval `dircolors $HOME/.dir_colors` + +# tmuxifier +eval "$(starship init bash)" |