Lib.rs

› jim › Install
  • Instructions
  • crates.io page

jim is both an executable binary that can be run, and a library that can be used in Rust programs.

Installing the command-line executable

Assuming you have Rust/Cargo installed, run this command in a terminal:

cargo install jim

It will make the jim command available in your PATH if you've allowed the PATH to be modified when installing Rust. cargo uninstall jim uninstalls.

Adding jim library as a dependency

Run this command in a terminal, in your project's directory:

cargo add jim

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

jim = "0.2.0"

The jim library will be automatically available globally. Read the jim library documentation.

Back to the crate overview.


Readme

jim

jim is a configuration profile management tool for neovim

Usage

###To install:

cargo install jim

###Basic usage:

First configure the default configuration path for jim:

jim init </path/to/default/configuration/file>

To add profiles:

jim add <profile_name> </path/to/configuration/file>

To list all available profiles:

jim list

To run nvim with a specific configuration file:

jim <profile_name>

To run nvim with the default configuration file:

jim

Back to jim.