优化搜索界面显示

This commit is contained in:
LingZhaoHui 2024-06-23 13:29:45 +08:00
parent 4ea9a03f7c
commit 06a604614b
Signed by: zeekling
GPG Key ID: D96E4E75267CA2CC

View File

@ -3,5 +3,18 @@ return {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
tag = "0.1.8", tag = "0.1.8",
dependencies = { "nvim-lua/plenary.nvim" }, dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("telescope").setup({
defaults = {
layout_strategy = "vertical",
layout_config = {
vertical = { width = 0.8 },
},
pickers = {
theme = "dropdown",
},
},
})
end,
}, },
} }