changeset 509:fa55013bbfe3

Clean up bashrc, add local one
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 14 Nov 2021 21:55:20 -0800
parents 5dcfe74f0465
children 877d56c80dd5
files .hgignore bashrc/bashrc
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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/
--- 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