/wrd.nvim

Thesaurus Neovim Plugin

Primary LanguageLua

Wrd.nvim

This plugin is still under development.

wrd.nvim is an extendable thesaurus and dictionary plugin built on telescope.nvim. It leverages datamuse apis and provides multiple functions for finding words related to your query.

Wrd Table of Contents

Getting Started

Requires Neovim (v0.9.0) or the lastest neovim nightly commit is required for telescope.nvim which is heavily used under the hood. See Telescope installation documentation in case of issues.

Required dependencies

Installation

Using lazy.nvim

-- init.lua:
    {
      'manning390/wrd.nvim',
      dependencies = {
        'nvim-lua/plenary.nvim',
        {'nvim-telescope/telescope.nvim', tag = '0.1.6'}
      }
    }
-- plugins/wrd.lua:
return {
    'manning390/wrd.nvim',
      dependencies = {
        'nvim-lua/plenary.nvim',
        {'nvim-telescope/telescope.nvim', tag = '0.1.6'}
      }
    }

Using [packer.nvim](https://github.com/wbthomason/packer.nvim)

```lua
use {
    'manning390/wrd.nvim'
    requires = { {'nvim-lua/plenary.nvim'}, {'/telescope.nvim', tag = '0.1.6'} }
}

Using vim-plug

Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.6' }
Plug 'manning390/wrd.nvim'

Usage

WIP