fix(telescope): update settings for pickers

This commit is contained in:
2025-09-13 22:04:44 +02:00
parent 51fa945a87
commit ed315a6649
+33 -2
View File
@@ -7,6 +7,7 @@ return {
dependencies = { dependencies = {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"debugloop/telescope-undo.nvim", "debugloop/telescope-undo.nvim",
"rcarriga/nvim-notify",
{ {
"nvim-telescope/telescope-fzf-native.nvim", "nvim-telescope/telescope-fzf-native.nvim",
build = "make", build = "make",
@@ -70,8 +71,18 @@ return {
preview_width = 80, preview_width = 80,
}, },
}, },
highlights = {
layout_config = {
width = 160,
preview_width = 80,
},
},
diagnostics = { diagnostics = {
initial_mode = "normal", initial_mode = "normal",
layout_config = {
width = 160,
preview_width = 80,
},
}, },
lsp_definitions = { lsp_definitions = {
initial_mode = "normal", initial_mode = "normal",
@@ -84,6 +95,10 @@ return {
}, },
lsp_references = { lsp_references = {
initial_mode = "normal", initial_mode = "normal",
layout_config = {
width = 160,
preview_width = 80,
},
}, },
git_status = { git_status = {
initial_mode = "normal", initial_mode = "normal",
@@ -130,9 +145,25 @@ return {
telescope.load_extension("fzf") telescope.load_extension("fzf")
telescope.load_extension("notify") telescope.load_extension("notify")
vim.keymap.set("n", "<leader>fn", telescope.extensions.notify.notify) vim.keymap.set("n", "<leader>fn", function()
telescope.extensions.notify.notify({
initial_mode = "normal",
layout_config = {
width = 160,
preview_width = 80,
},
})
end)
telescope.load_extension("undo") telescope.load_extension("undo")
vim.keymap.set("n", "<leader>fu", telescope.extensions.undo.undo) vim.keymap.set("n", "<leader>fu", function()
telescope.extensions.undo.undo({
initial_mode = "normal",
layout_config = {
width = 160,
preview_width = 80,
},
})
end)
end, end,
} }