diff options
| author | jason | 2022-04-22 16:26:57 -0600 |
|---|---|---|
| committer | jason | 2022-04-22 16:26:57 -0600 |
| commit | 8389e5ef582caba5b132ee0998ec090749b7e0d0 (patch) | |
| tree | d6a869396d28da8e690f78125ba70e3634b0876a /bash | |
| parent | ed8a4adfd6d7cc4c551d0f60e3e6445a542e3f6c (diff) | |
| download | dotfiles-8389e5ef582caba5b132ee0998ec090749b7e0d0.tar.gz dotfiles-8389e5ef582caba5b132ee0998ec090749b7e0d0.zip | |
add support for tcl/tk via brew
Diffstat (limited to 'bash')
| -rw-r--r-- | bash/.bashrc | 7 |
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 |
| 105 | fi | 105 | fi |
| 106 | 106 | ||
| 107 | ## TCL/TK via homebrew | ||
| 108 | ## OS X packages an outdated and deprecated version that doesn't really | ||
| 109 | ## work. | ||
| 110 | if [ -d /opt/homebrew/opt/tcl-tk/bin ]; then | ||
| 111 | PATH=/opt/homebrew/opt/tcl-tk/bin:$PATH | ||
| 112 | fi | ||
| 113 | |||
| 107 | ####### | 114 | ####### |
| 108 | 115 | ||
| 109 | TERM="xterm-256color" | 116 | TERM="xterm-256color" |