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
9
10
11
12
use anyhow::Result;

use crate::tmux;

use super::load;

pub fn init() -> Result<()> {
    tmux::setup_keymaps()?;
    load::load()?;

    Ok(())
}