aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorjason2022-04-22 16:26:57 -0600
committerjason2022-04-22 16:26:57 -0600
commit8389e5ef582caba5b132ee0998ec090749b7e0d0 (patch)
treed6a869396d28da8e690f78125ba70e3634b0876a /bash
parented8a4adfd6d7cc4c551d0f60e3e6445a542e3f6c (diff)
downloaddotfiles-8389e5ef582caba5b132ee0998ec090749b7e0d0.tar.gz
dotfiles-8389e5ef582caba5b132ee0998ec090749b7e0d0.zip
add support for tcl/tk via brew
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc7
1 files changed, 7 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index b8cf2b6..d8069d6 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -104,6 +104,13 @@ if [ -f /opt/homebrew/opt/fzf/shell/completion.bash ]; then
104 . /opt/homebrew/opt/fzf/shell/key-bindings.bash 104 . /opt/homebrew/opt/fzf/shell/key-bindings.bash
105fi 105fi
106 106
107## TCL/TK via homebrew
108## OS X packages an outdated and deprecated version that doesn't really
109## work.
110if [ -d /opt/homebrew/opt/tcl-tk/bin ]; then
111 PATH=/opt/homebrew/opt/tcl-tk/bin:$PATH
112fi
113
107####### 114#######
108 115
109TERM="xterm-256color" 116TERM="xterm-256color"