aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorjason2022-04-22 16:29:34 -0600
committerjason2022-04-22 16:29:34 -0600
commit4df06d9514818d2a78fb3de159af6d1db4c12a62 (patch)
treee499bf23a54969dbabc92f586ebf2cf66ccf8dd9 /bash
parentdc5b6f024df0a596c7c53f0eac0ffaa53cebdfc2 (diff)
downloaddotfiles-4df06d9514818d2a78fb3de159af6d1db4c12a62.tar.gz
dotfiles-4df06d9514818d2a78fb3de159af6d1db4c12a62.zip
support terraform completions
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index d8069d6..7e7e791 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -183,3 +183,9 @@ WARPDIR=`which warpdir`
183if [[ -x $WARPDIR ]]; then 183if [[ -x $WARPDIR ]]; then
184 eval "$(warpdir hook bash)" 184 eval "$(warpdir hook bash)"
185fi 185fi
186
187# Enable terraform completions
188TERRAFORM=`which terraform`
189if [[ -x $TERRAFORM ]]; then
190 complete -C $TERRAFORM terraform
191fi