2023-09-28 11:13:02 +02:00
|
|
|
return {
|
|
|
|
{
|
|
|
|
"folke/flash.nvim",
|
|
|
|
enabled = false,
|
|
|
|
},
|
2024-05-25 11:27:18 +02:00
|
|
|
|
2023-11-02 20:04:31 +01:00
|
|
|
{
|
2024-05-25 11:27:18 +02:00
|
|
|
"danielfalk/smart-open.nvim",
|
|
|
|
branch = "0.2.x",
|
|
|
|
dependencies = {
|
|
|
|
"kkharji/sqlite.lua",
|
|
|
|
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
|
|
|
|
{ "nvim-telescope/telescope-fzy-native.nvim" },
|
|
|
|
},
|
|
|
|
keys = {
|
|
|
|
{
|
|
|
|
"<leader><leader>",
|
|
|
|
":lua require('telescope').extensions.smart_open.smart_open {filename_first = false }<cr>",
|
|
|
|
desc = "Telescope smart open",
|
|
|
|
},
|
|
|
|
},
|
2024-05-23 22:53:22 +02:00
|
|
|
config = function()
|
2024-05-25 11:27:18 +02:00
|
|
|
local util = require("lazyvim.util")
|
|
|
|
util.on_load("telescope.nvim", function()
|
|
|
|
local telescope = require("telescope")
|
|
|
|
telescope.load_extension("smart_open")
|
|
|
|
end)
|
|
|
|
end,
|
|
|
|
},
|
2024-05-23 22:53:22 +02:00
|
|
|
|
2024-05-25 11:27:18 +02:00
|
|
|
{
|
|
|
|
"telescope.nvim",
|
|
|
|
opts = function(_, opts)
|
|
|
|
local actions = require("telescope.actions")
|
|
|
|
opts.defaults = {
|
|
|
|
layout_strategy = "horizontal",
|
|
|
|
layout_config = {
|
|
|
|
anchor = "top",
|
|
|
|
horizontal = {
|
|
|
|
prompt_position = "top",
|
|
|
|
mirror = false,
|
|
|
|
preview_width = 0.4,
|
|
|
|
-- preview_height = 0.5,
|
2024-05-23 22:53:22 +02:00
|
|
|
},
|
2024-05-25 11:27:18 +02:00
|
|
|
width = 0.9,
|
|
|
|
height = 0.9,
|
|
|
|
preview_cutoff = 10,
|
|
|
|
},
|
|
|
|
mappings = {
|
|
|
|
i = {
|
|
|
|
["<esc>"] = actions.close, -- <Esc> close popup
|
|
|
|
["<C-u>"] = false, -- <C-u> clear prompt
|
2023-11-02 20:04:31 +01:00
|
|
|
},
|
2024-05-14 15:48:18 +02:00
|
|
|
},
|
2024-05-25 11:27:18 +02:00
|
|
|
sorting_strategy = "ascending",
|
|
|
|
winblend = 0,
|
|
|
|
wrap_results = true,
|
|
|
|
previewer = false,
|
|
|
|
preview = {
|
|
|
|
hide_on_startup = true,
|
|
|
|
},
|
|
|
|
}
|
2024-05-23 22:53:22 +02:00
|
|
|
end,
|
2023-11-02 20:04:31 +01:00
|
|
|
},
|
2023-09-28 11:13:02 +02:00
|
|
|
}
|