diff --git a/nvim/.config/nvim/lua/plugins/pickers.lua b/nvim/.config/nvim/lua/plugins/pickers.lua
index 8072d32..3682999 100644
--- a/nvim/.config/nvim/lua/plugins/pickers.lua
+++ b/nvim/.config/nvim/lua/plugins/pickers.lua
@@ -56,7 +56,6 @@ return { -- file/item pickers and managers
 			end
 		end,
 		opts = {
-			fzf_opts = { ["--select-1"] = false },
 			keymap = {
 				builtin = {
 					true,
@@ -78,7 +77,10 @@ return { -- file/item pickers and managers
 					},
 				},
 			},
-		}, -- FIXME: Does not seem to work with single result and still closes instantly?
+			defaults = { -- FIXME: Does not seem to work with single result and still closes instantly?
+				jump1 = false,
+			},
+		},
 		config = function(_, opts)
 			opts.actions = opts.actions or { true }
 			opts.actions["ctrl-q"] = require("fzf-lua").actions.file_sel_to_qf