From c80a54e42b52ce297f0f2f71af23c562832025c7 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Fri, 24 Jan 2025 20:35:27 +0900 Subject: init --- ar/.config/LazyVim/lua/plugins/telescope.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ar/.config/LazyVim/lua/plugins/telescope.lua (limited to 'ar/.config/LazyVim/lua/plugins/telescope.lua') diff --git a/ar/.config/LazyVim/lua/plugins/telescope.lua b/ar/.config/LazyVim/lua/plugins/telescope.lua new file mode 100644 index 0000000..0a96a09 --- /dev/null +++ b/ar/.config/LazyVim/lua/plugins/telescope.lua @@ -0,0 +1,24 @@ +return { + "nvim-telescope/telescope.nvim", + keys = { + { "/", false }, + { "", false }, + { "", false }, + }, + opts = function() + local actions = require("telescope.actions") + + return { + defaults = { + mappings = { + i = { + [""] = actions.preview_scrolling_down, + [""] = actions.preview_scrolling_up, + [""] = actions.preview_scrolling_left, + [""] = actions.preview_scrolling_right, + }, + }, + }, + } + end, +} -- cgit v1.2.3