nvim: use smart-open as file finder
This commit is contained in:
parent
57a007be9d
commit
f1e44b26ee
1 changed files with 51 additions and 31 deletions
|
@ -3,43 +3,63 @@ return {
|
||||||
"folke/flash.nvim",
|
"folke/flash.nvim",
|
||||||
enabled = false,
|
enabled = false,
|
||||||
},
|
},
|
||||||
{ "aohoyd/broot.nvim", opts = {} },
|
|
||||||
|
{
|
||||||
|
"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",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
config = function()
|
||||||
|
local util = require("lazyvim.util")
|
||||||
|
util.on_load("telescope.nvim", function()
|
||||||
|
local telescope = require("telescope")
|
||||||
|
telescope.load_extension("smart_open")
|
||||||
|
end)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"telescope.nvim",
|
"telescope.nvim",
|
||||||
config = function()
|
opts = function(_, opts)
|
||||||
local telescope = require("telescope")
|
|
||||||
local actions = require("telescope.actions")
|
local actions = require("telescope.actions")
|
||||||
|
opts.defaults = {
|
||||||
telescope.setup({
|
layout_strategy = "horizontal",
|
||||||
defaults = {
|
layout_config = {
|
||||||
layout_strategy = "horizontal",
|
anchor = "top",
|
||||||
layout_config = {
|
horizontal = {
|
||||||
anchor = "top",
|
prompt_position = "top",
|
||||||
horizontal = {
|
mirror = false,
|
||||||
prompt_position = "top",
|
preview_width = 0.4,
|
||||||
mirror = false,
|
-- preview_height = 0.5,
|
||||||
preview_width = 0.4,
|
|
||||||
-- preview_height = 0.5,
|
|
||||||
},
|
|
||||||
width = 0.9,
|
|
||||||
height = 0.9,
|
|
||||||
preview_cutoff = 10,
|
|
||||||
},
|
},
|
||||||
mappings = {
|
width = 0.9,
|
||||||
i = {
|
height = 0.9,
|
||||||
["<esc>"] = actions.close, -- <Esc> close popup
|
preview_cutoff = 10,
|
||||||
["<C-u>"] = false, -- <C-u> clear prompt
|
},
|
||||||
},
|
mappings = {
|
||||||
},
|
i = {
|
||||||
sorting_strategy = "ascending",
|
["<esc>"] = actions.close, -- <Esc> close popup
|
||||||
winblend = 0,
|
["<C-u>"] = false, -- <C-u> clear prompt
|
||||||
wrap_results = true,
|
|
||||||
previewer = false,
|
|
||||||
preview = {
|
|
||||||
hide_on_startup = true,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
sorting_strategy = "ascending",
|
||||||
|
winblend = 0,
|
||||||
|
wrap_results = true,
|
||||||
|
previewer = false,
|
||||||
|
preview = {
|
||||||
|
hide_on_startup = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue