AckslD / nvim-neoclip.lua

Clipboard manager neovim plugin with telescope integration
931 stars 19 forks source link

feat(fzf-lua): option to override fzf-lua picker opts #84

Closed barrett-ruth closed 1 year ago

barrett-ruth commented 1 year ago

This change addresses issue #83. Now one can setup neoclip and override the prompt variable, for example, with the following configuration:

require('neoclip').setup {
    keys = {
        fzf = {
            opts = {
                prompt = 'clip> '
            }
        }
    }
}
barrett-ruth commented 1 year ago

Actually, I agree. Just made ability to pass a prompt (for both telescope and fzf-lua).