add fisher plugins install script
This commit is contained in:
parent
b62a73ea71
commit
2c158b4386
1 changed files with 20 additions and 0 deletions
20
bin/linux/fisher_plugins.fish
Normal file
20
bin/linux/fisher_plugins.fish
Normal file
|
@ -0,0 +1,20 @@
|
|||
#!/bin/fish
|
||||
|
||||
#==========================================================
|
||||
# fisher plugin install
|
||||
#==========================================================
|
||||
|
||||
# check fisher existence
|
||||
if ! type fisher &>/dev/null
|
||||
echo "fisher does not exist."
|
||||
echo "Please install fisher."
|
||||
return 1
|
||||
end
|
||||
|
||||
fisher update
|
||||
|
||||
# installing packages
|
||||
fisher install edc/bass
|
||||
#fisher install jethrokuan/z
|
||||
fisher install patrickf1/fzf.fish
|
||||
|
Loading…
Reference in a new issue