diff --git a/nvim/.config/nvim/lua/lazy-plugins/ui-telescope.lua b/nvim/.config/nvim/lua/lazy-plugins/ui-telescope.lua deleted file mode 100644 index 6874d47..0000000 --- a/nvim/.config/nvim/lua/lazy-plugins/ui-telescope.lua +++ /dev/null @@ -1,71 +0,0 @@ --- Telescope -return { - "nvim-telescope/telescope.nvim", - enabled = false, - dependencies = { - "nvim-lua/plenary.nvim", - { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, - "nvim-tree/nvim-web-devicons", - }, - config = function() - local telescope = require("telescope") - local actions = require("telescope.actions") - - telescope.setup({ - defaults = { - path_display = { "smart" }, - mappings = { - i = { - [""] = actions.move_selection_previous, -- move to prev result - [""] = actions.move_selection_next, -- move to next result - -- [""] = actions.send_selected_to_qflist + actions.open_qflist, - [""] = actions.delete_buffer, - }, - }, - }, - pickers = { - find_files = { - hidden = true, - }, - }, - }) - telescope.load_extension("fzf") - end, - keys = { - { - "ff", - "Telescope find_files", - desc = "Find files", - }, - { - "fg", - "Telescope live_grep", - desc = "Live grep", - }, - { - "fb", - "Telescope buffers", - desc = "Buffers", - }, - { - "fh", - "Telescope help_tags", - desc = "Help tags", - }, - { - "fr", - "Telescope oldfiles`", - desc = "Recent files", - }, - { - "fs", - "Telescope grep_string", - desc = "Find string", - }, - { - "ft", - "TodoTelescope", - desc = "Find todos", - }, - }, -}