mirror of
https://github.com/KevinMidboe/dotfiles.git
synced 2025-12-08 12:18:56 +00:00
Added oh-my-zsh in all its glory
This commit is contained in:
10
.oh-my-zsh/plugins/homestead/homestead.plugin.zsh
Normal file
10
.oh-my-zsh/plugins/homestead/homestead.plugin.zsh
Normal file
@@ -0,0 +1,10 @@
|
||||
# Homestead basic command completion
|
||||
_homestead_get_command_list () {
|
||||
homestead --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z]+/ { print $1 }'
|
||||
}
|
||||
|
||||
_homestead () {
|
||||
compadd `_homestead_get_command_list`
|
||||
}
|
||||
|
||||
compdef _homestead homestead
|
||||
Reference in New Issue
Block a user