We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0952991 + 6591d43 commit 15dcf88Copy full SHA for 15dcf88
home/app/.bashrc
@@ -1,3 +1,17 @@
1
# useful aliases
2
alias ll='ls -la'
3
alias artisan="php artisan"
4
+
5
+# prompt colors and short user display
6
+force_color_prompt=yes
7
+PS1='\[\033[1;36m\]\u\[\033[1;31m\]\[\033[1;32m\]:\[\033[1;35m\]\w\[\033[1;31m\]\$\[\033[0m\] '
8
9
+# artisan autocompletion
10
+_artisan()
11
+{
12
+ COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
13
+ COMMANDS=`artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"`
14
+ COMPREPLY=(`compgen -W "$COMMANDS" -- "${COMP_WORDS[COMP_CWORD]}"`)
15
+ return 0
16
+}
17
+complete -F _artisan artisan
0 commit comments