From c6ad4a4437b9f7e4790d255caf7f0878039186b2 Mon Sep 17 00:00:00 2001 From: SL1900 Date: Tue, 12 Aug 2025 03:12:27 +0900 Subject: [PATCH] Added telescope extension egrepify --- lazy-lock.json | 1 + lua/plugins/telescope.lua | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/lazy-lock.json b/lazy-lock.json index 34e0de6..c89abff 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -43,6 +43,7 @@ "snacks.nvim": { "branch": "main", "commit": "bc0630e43be5699bb94dadc302c0d21615421d93" }, "tailwind-tools": { "branch": "master", "commit": "fbe982901d4508b0dcd80e07addf0fcb6dab6c49" }, "tailwindcss-colors.nvim": { "branch": "main", "commit": "ccb5be2f84673c1a0ef90a0c0a76733e85e5265b" }, + "telescope-egrepify.nvim": { "branch": "master", "commit": "a8070970a661330c4e00450d25f874f6c2b00af9" }, "telescope-file-browser.nvim": { "branch": "master", "commit": "3610dc7dc91f06aa98b11dca5cc30dfa98626b7e" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "1f08ed60cafc8f6168b72b80be2b2ea149813e55" }, "telescope-live-grep-args.nvim": { "branch": "master", "commit": "b80ec2c70ec4f32571478b501218c8979fab5201" }, diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index 4a4bec5..fa4956f 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -125,4 +125,10 @@ return { vim.keymap.set("n", "fg", ":lua require(\"telescope\").extensions.live_grep_args.live_grep_args()") end }, + { + "fdschmidt93/telescope-egrepify.nvim", + config = function () + require("telescope").load_extension("egrepify") + end + } }