Skip to content

Commit 177fd66

Browse files
committed
feat: added docker, artisan, trello and ncvo
1 parent 244c522 commit 177fd66

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

available/21_docker.bash

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export DOCKER_BUILDKIT=1

available/22_artisan.bash

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
_artisan()
2+
{
3+
COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
4+
COMMANDS=`php artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"`
5+
COMPREPLY=(`compgen -W "$COMMANDS" -- "${COMP_WORDS[COMP_CWORD]}"`)
6+
return 0
7+
}
8+
complete -F _artisan art
9+
complete -F _artisan artisan

available/54_trello.bash

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
if [ ! -e $HOME/.nvm/versions/node/v18.14.1/bin/trello ]; then
2+
echo Trello not installed
3+
echo npm install -g trello-cli
4+
else
5+
if [ ! -f .trello ]; then
6+
echo "No .trello file in current directory. Can't continue"
7+
else
8+
# trello show-cards -b "$(cat .trello)"
9+
fi
10+
fi

available/66_ncvo.bash

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export NCVO_HOME=$HOME/usr/ncvo
2+
export PATH=$PATH:$NCVO_HOME/back-controller/bin
3+
source $NCVO_HOME/back-controller/bin/bash_completion.bash

0 commit comments

Comments
 (0)