1
0
Fork 0

Add configuration for bash

- Add ~/.bashrc
  + Configure on how the `history` works
  + Enable nicer `cd` and globbing behavior
  + Enable tab completion, even for aliases
  + Add some more stuff from Debian's ~/.bashrc
- Add ~/.bash_logout clearing the screen
- Add stubs for ~/.bash_login and ~/.bash_profile
  that redirect to ~/.profile
- Ensure ~/.local/state/bash/ exists
This commit is contained in:
Alexander Hess 2026-06-11 18:28:02 +02:00
commit a6f40c0ffb
Signed by: alexander
GPG key ID: D88F903B85326FFE
7 changed files with 178 additions and 5 deletions

View file

@ -1,10 +1,18 @@
#!/bin/sh
# Main setup file executed for all kinds of shells
#
# For `bash`, if the following files exist,
# they have precedence over this file:
# - ~/.bash_login
# - ~/.bash_profile
#
# So, we make both source this file,
# and thus preserve the load order either way!
# Prevent loading ~/.profile twice in `bash`
export PROFILE_LOADED=1
PROFILE_LOADED=1
# Basic utilities
@ -48,7 +56,3 @@ fi
# Put local executables on the `$PATH`
_prepend_to_path "$HOME/.local/bin"
# Ensure ~/.profile is loaded each time `bash` starts
unset PROFILE_LOADED