Verf / telescope-everything.nvim

Search things by es.exe(everything command line interface) for windows user.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

telescope-everything.nvim

Search things by es.exe(Everything Command Line Interface) for windows user.

Requirement

Install Everything, and put Everything Command Line Interface in PATH (or setup es_path to the path of es).

Installation

vim-plug

Plug 'Verf/telescope-everything.nvim'

or packer

use 'Verf/telescope-everything.nvim'

Setup

require('telescope').load_extension 'everything'

Usage

:Telescope everything

Config

You can check Everything Command Line Interface for more information, the default config is:

require('telescope').setup {
    extensions = {
        everything = {
            es_path = "es",
            case_sensitity = false,
            whole_word = false,
            match_path = false,
            sort = false,
            regex = true,
            offset = 0,
            max_results = 100,
        }
    },
}

About

Search things by es.exe(everything command line interface) for windows user.

License:MIT License


Languages

Language:Lua 100.0%