diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2025-08-19 10:28:35 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2025-08-19 10:28:35 +0100 |
commit | ac217752a86305288a94b74acba65e5ce9f0a41a (patch) | |
tree | 455dfd2468f332228de6cd83c2881440453acd79 /neovim/.config/nvim/lua | |
parent | 44caa736e20fd6bb43695402ac5595a3a4a92dea (diff) |
Neovim telescope updates
Diffstat (limited to 'neovim/.config/nvim/lua')
-rw-r--r-- | neovim/.config/nvim/lua/plugins/telescope.lua | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/neovim/.config/nvim/lua/plugins/telescope.lua b/neovim/.config/nvim/lua/plugins/telescope.lua index 08729ca..0f81d89 100644 --- a/neovim/.config/nvim/lua/plugins/telescope.lua +++ b/neovim/.config/nvim/lua/plugins/telescope.lua @@ -7,11 +7,15 @@ return { 'nvim-lua/plenary.nvim', }, { - "nvim-telescope/telescope-live-grep-args.nvim", + 'nvim-telescope/telescope-live-grep-args.nvim', -- This will not install any breaking changes. -- For major updates, this must be adjusted manually. version = "^1.0.0", }, + { + 'nvim-telescope/telescope-fzf-native.nvim', + build = 'make' + }, }, cmd = "Telescope", keys = { @@ -29,7 +33,7 @@ return { live_grep_args = { auto_quoting = true, -- enable/disable auto-quoting -- define mappings, e.g. - mappings = { -- extend mappings + mappings = { -- extend mappings i = { ["<C-k>"] = lga_actions.quote_prompt(), ["<C-i>"] = lga_actions.quote_prompt({ postfix = " --iglob " }), @@ -47,6 +51,7 @@ return { -- then load the extension telescope.load_extension("live_grep_args") + telescope.load_extension("fzf") end }, } |