summaryrefslogtreecommitdiff
path: root/ar/.config/LazyVim/lua/plugins/telescope.lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-07-03 11:54:10 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-07-03 11:54:10 +0900
commit5da5f0506b5799dc757e9d93af23cebbfa18eb91 (patch)
tree53e5c8fa0c447f95d3cf44249337a48816bd74fa /ar/.config/LazyVim/lua/plugins/telescope.lua
parentdcd0f3b885ccbfdb5cd1abf7adb66fd777273fae (diff)
updates
Diffstat (limited to 'ar/.config/LazyVim/lua/plugins/telescope.lua')
-rw-r--r--ar/.config/LazyVim/lua/plugins/telescope.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/ar/.config/LazyVim/lua/plugins/telescope.lua b/ar/.config/LazyVim/lua/plugins/telescope.lua
deleted file mode 100644
index 0a96a09..0000000
--- a/ar/.config/LazyVim/lua/plugins/telescope.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-return {
- "nvim-telescope/telescope.nvim",
- keys = {
- { "<leader>/", false },
- { "<C-f>", false },
- { "<C-b>", false },
- },
- opts = function()
- local actions = require("telescope.actions")
-
- return {
- defaults = {
- mappings = {
- i = {
- ["<C-j>"] = actions.preview_scrolling_down,
- ["<C-k>"] = actions.preview_scrolling_up,
- ["<C-h>"] = actions.preview_scrolling_left,
- ["<C-l>"] = actions.preview_scrolling_right,
- },
- },
- },
- }
- end,
-}