From 9851fb84ea0be6c5e3d960418cfc30ea1f4e767d Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Sun, 14 Apr 2024 16:01:07 +0200 Subject: [PATCH] fix(telescope): sort buffers by most recent --- lua/plugins/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index c8f762c..52dd69b 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -90,7 +90,7 @@ local function setup() "n", "fb", function () - builtin.buffers({ previewer = false, }) + builtin.buffers({ previewer = false, sort_mru = true, }) end )