Add fundle step (#90)

This commit is contained in:
Rebecca Turner
2022-10-31 02:05:43 -04:00
committed by GitHub
parent d8bac65317
commit dc07144918
2 changed files with 18 additions and 0 deletions

View File

@@ -295,6 +295,7 @@ fn run() -> Result<()> {
runner.execute(Step::Shell, "bash-it", || unix::run_bashit(&ctx))?;
runner.execute(Step::Shell, "oh-my-fish", || unix::run_oh_my_fish(&ctx))?;
runner.execute(Step::Shell, "fish-plug", || unix::run_fish_plug(&ctx))?;
runner.execute(Step::Shell, "fundle", || unix::run_fundle(&ctx))?;
runner.execute(Step::Tmux, "tmux", || tmux::run_tpm(&base_dirs, run_type))?;
runner.execute(Step::Tldr, "TLDR", || unix::run_tldr(run_type))?;
runner.execute(Step::Pearl, "pearl", || unix::run_pearl(run_type))?;