mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-19 08:16:10 +01:00
64 lines
2.2 KiB
Bash
64 lines
2.2 KiB
Bash
# Add `~/bin` to the `$PATH`
|
||
export PATH="$HOME/bin:$PATH";
|
||
|
||
# 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 ~/.{path,bash_prompt,exports,aliases,functions,extra}; 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;
|
||
|
||
# Enable some Bash 4 features when possible:
|
||
# * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux`
|
||
# * Recursive globbing, e.g. `echo **/*.txt`
|
||
for option in autocd globstar; do
|
||
shopt -s "$option" 2> /dev/null;
|
||
done;
|
||
|
||
# timestamps for later analysis. www.debian-administration.org/users/rossen/weblog/1
|
||
export HISTTIMEFORMAT='%F %T '
|
||
|
||
# keep history up to date, across sessions, in realtime
|
||
# http://unix.stackexchange.com/a/48113
|
||
export HISTCONTROL=ignoredups:erasedups # no duplicate entries
|
||
export HISTSIZE=100000 # big big history (default is 500)
|
||
export HISTFILESIZE=$HISTSIZE # big big history
|
||
which shopt > /dev/null 2>&1 && shopt -s histappend # append to history, don't overwrite it
|
||
|
||
# ^ the only downside with this is [up] on the readline will go over all history not just this bash session.
|
||
|
||
# Save and reload the history after each command finishes
|
||
export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
|
||
|
||
# mc theme
|
||
export MC_SKIN=$HOME/.mc/solarized.ini
|
||
|
||
# Add tab completion for many Bash commands
|
||
if [ -f "$HOME/usr/share/bash-completion" ]; then
|
||
source "$HOME/usr/share/bash-completion";
|
||
fi;
|
||
|
||
# Enable tab completion for `g` by marking it as an alias for `git`
|
||
if type _git &> /dev/null && [ -f "$HOME/usr/etc/bash_completion.d/git-completion.bash" ]; then
|
||
complete -o default -o nospace -F _git g;
|
||
fi;
|
||
|
||
# Add tab completion for SSH hostnames based on ~/.ssh/config, ignoring wildcards
|
||
[ -e "$HOME/.ssh/config" ] && complete -o "default" -o "nospace" -W "$(grep "^Host" ~/.ssh/config | grep -v "[?*]" | cut -d " " -f2- | tr ' ' '\n')" scp sftp ssh;
|
||
|
||
|
||
[ -e "$HOME/.z.sh" ] && . $HOME/.z.sh
|
||
|
||
true
|