Skip to content

Telescope pickers with direct access to all ripgrep features.

Notifications You must be signed in to change notification settings

BlankTiger/telescope-rg.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

telescope-rg.nvim

Telescope extension gives user the ability to pick and choose ripgrep options on the fly.

showcase.mp4

Requirements

Installation

With lazy.nvim:

{
    "blanktiger/telescope-rg.nvim",
    dependencies = {
        "nvim-telescope/telescope.nvim",
        config = function()
            require("telescope").load_extension("ripgrep")
        end,
    },
    opts = { 
        -- your config goes here
    }
}

Available pickers

You can configure two pickers that specialize in two different things:

-- FILE SEARCHER
vim.api.nvim_set_keymap("n", "<leader>sf", function()
    require("telescope").extensions.ripgrep.ripgrep_files({})
end, {})

-- TEXT SEARCHER
vim.api.nvim_set_keymap("n", "<leader>st", function()
    require("telescope").extensions.ripgrep.ripgrep_text({})
end, {})

About

Telescope pickers with direct access to all ripgrep features.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages