summaryrefslogtreecommitdiff
path: root/.config/fish/functions/_tide_item_terraform.fish
blob: 60fd3fb11080e0bef119d0c57382652c5ded95ca (plain)
1
2
3
4
5
6
function _tide_item_terraform
    if test -d .terraform
        terraform workspace show | read -l workspace
        test $workspace != default && _tide_print_item terraform $tide_terraform_icon' ' $workspace
    end
end