diff options
| author | jason | 2022-04-22 16:29:34 -0600 |
|---|---|---|
| committer | jason | 2022-04-22 16:29:34 -0600 |
| commit | 4df06d9514818d2a78fb3de159af6d1db4c12a62 (patch) | |
| tree | e499bf23a54969dbabc92f586ebf2cf66ccf8dd9 /bash | |
| parent | dc5b6f024df0a596c7c53f0eac0ffaa53cebdfc2 (diff) | |
| download | dotfiles-4df06d9514818d2a78fb3de159af6d1db4c12a62.tar.gz dotfiles-4df06d9514818d2a78fb3de159af6d1db4c12a62.zip | |
support terraform completions
Diffstat (limited to 'bash')
| -rw-r--r-- | bash/.bashrc | 6 |
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` | |||
| 183 | if [[ -x $WARPDIR ]]; then | 183 | if [[ -x $WARPDIR ]]; then |
| 184 | eval "$(warpdir hook bash)" | 184 | eval "$(warpdir hook bash)" |
| 185 | fi | 185 | fi |
| 186 | |||
| 187 | # Enable terraform completions | ||
| 188 | TERRAFORM=`which terraform` | ||
| 189 | if [[ -x $TERRAFORM ]]; then | ||
| 190 | complete -C $TERRAFORM terraform | ||
| 191 | fi | ||