bashrc/.bashrc

26 lines
608 B
Bash
Raw Normal View History

#!/bin/bash
2016-01-20 17:06:54 +00:00
#
# ~/.bashrc
#
# Thurstylark
#
# Reference: https://wiki.thurstylark.com/Bashrc.html
2016-01-20 17:06:54 +00:00
### GENERAL CONFIG ###
2016-01-20 17:06:54 +00:00
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# If a directory is given without any command, CD into it.
shopt -s autocd
2016-01-20 17:06:54 +00:00
# Enable pkgfile to automatically search for packages if pkgfile is installed
[[ -s /usr/share/doc/pkgfile/command-not-found.bash ]] && source /usr/share/doc/pkgfile/command-not-found.bash
2016-01-20 17:06:54 +00:00
### OTHER CONFIG ###
2016-01-20 17:06:54 +00:00
# Source all *.sh files in ~/.bashrc.d/
# shellcheck source=/dev/null
for f in ~/.bashrc.d/*.sh; do source "$f"; done