From 4727df71a3225b9adcbd802bd050cfe196b5a323 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Tue, 28 Jan 2025 12:33:07 +0100 Subject: [PATCH] Fix git branches telescope picker --- nvim/lua/plugins/telescope.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/lua/plugins/telescope.lua b/nvim/lua/plugins/telescope.lua index 97b2d9e..b12a9dc 100644 --- a/nvim/lua/plugins/telescope.lua +++ b/nvim/lua/plugins/telescope.lua @@ -104,8 +104,8 @@ return { -- use_file_path = true, show_remote_tracking_branches = false, mappings = { - mappings = { - i = { [""] = actions.git_switch_branch }, + i = { + [""] = actions.git_switch_branch }, } },