Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.16 KB

File metadata and controls

56 lines (41 loc) · 1.16 KB

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,
        }
    },
}