summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--neovim/.config/nvim/lua/plugins/telescope.lua9
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
},
}