| Crates.io | nigant |
| lib.rs | nigant |
| version | 0.4.1 |
| created_at | 2020-04-12 09:06:56.796068+00 |
| updated_at | 2020-04-12 16:13:14.46578+00 |
| description | A Thesaurus for the Terminal |
| homepage | |
| repository | https://github.com/twinair/nigant |
| max_upload_size | |
| id | 228929 |
| size | 74,483 |
A Thesaurus for the Terminal
Nigant comes the Sanskrit word निघण्टु (Nighaṇṭu), meaning a glossary or a partial lexicon.
You can install Nigant using Cargo.
Nigant relies on the Oxford Developer API. Generate your API ID & API KEY, and place it in a nigant.ini file as NIGANT_APP_ID & NIGANT_APP_KEY.
$ cat nigant.ini
NIGANT_APP_ID=<YOUR_APP_ID>
NIGANT_APP_KEY=<YOUR_APP_KEY>
$ cargo install nigant
$ nigant <word>
You can build Nigant from source-code before use. Refer section on Building for build instructions. Generate your API ID & API KEY, and place it in a nigant.ini file as NIGANT_APP_ID & NIGANT_APP_KEY.
$ cat nigant.ini
NIGANT_APP_ID=<YOUR_APP_ID>
NIGANT_APP_KEY=<YOUR_APP_KEY>
$ ./target/release/nigant <word>
$ nigant pastiche
pastiche
Definitions:
- an artistic work in a style that imitates that of another work, artist, or period
- imitate the style of (an artist or work)
Synonyms:
imitation, parody, take-off, parody, take off, burlesque, pastiche, make fun of
Etymology:
- late 19th century: from French, from Italian pasticcio, based on late Latin pasta‘paste’
Nigant is written in Rust, so you'll need to grab a Rust installation in order to compile it. In general, Nigant tracks the latest stable release of the Rust compiler.
To build Nigant:
$ git clone https://github.com/twinair/nigant
$ cd nigant
$ cargo build --release