# HG changeset patch # User Ludovic Chabant # Date 1636955720 28800 # Node ID fa55013bbfe394d96049e862464ce92bb4521901 # Parent 5dcfe74f0465e95bfad4f9462869acf6b4cbabee Clean up bashrc, add local one diff -r 5dcfe74f0465 -r fa55013bbfe3 .hgignore --- a/.hgignore Fri Nov 12 12:01:50 2021 -0800 +++ b/.hgignore Sun Nov 14 21:55:20 2021 -0800 @@ -6,6 +6,7 @@ cache/* tags/* .netrwhist +bashrc/bashrc-local git/gitconfig-local hgrc/hgrc-local lib/ diff -r 5dcfe74f0465 -r fa55013bbfe3 bashrc/bashrc --- a/bashrc/bashrc Fri Nov 12 12:01:50 2021 -0800 +++ b/bashrc/bashrc Sun Nov 14 21:55:20 2021 -0800 @@ -8,12 +8,6 @@ # Homebrew binaries. PATH=/usr/local/sbin:/usr/local/bin:$PATH -# Python from Homebrew -#PATH=/usr/local/share/python:$PATH - -# Ruby from Homebrew -#PATH=/usr/local/Cellar/ruby/1.9.3-p194/bin:$PATH - # Local binaries PATH=$HOME/.local/bin:$PATH @@ -39,3 +33,8 @@ # Pretty colors. export TERM=xterm-256color alias tmux2="TERM=screen-256color-bce tmux" + +# Local stuff. +if [ -f bashrc-local ]; then + source bashrc-local +fi