ahiru-tpm 0.5.0

Drop-in replacement for the famous Tmux Plugin Manager (TPM), written in Rust. 🦆
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;

pub async fn sync() -> Result<()> {
    super::install::install().await?;
    super::clean::clean()?;
    super::update::update_all().await?;
    Ok(())
}