From f29cf2a00d5c87ed5a448d55fe5d6478e006715c Mon Sep 17 00:00:00 2001 From: PeteChu Date: Thu, 6 Apr 2023 01:45:28 +0700 Subject: [PATCH] Update bufferline.lua to sort buffers by inserting them at the end instead of after the current one --- lua/custom/plugins/bufferline.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins/bufferline.lua b/lua/custom/plugins/bufferline.lua index 70847ba4..c9f0a00f 100644 --- a/lua/custom/plugins/bufferline.lua +++ b/lua/custom/plugins/bufferline.lua @@ -11,7 +11,7 @@ return { offsets = { { filetype = "NvimTree", text = "File Explorer", padding = 1 } }, separator_style = "thin", -- | "thick" | "thin" | { 'any', 'any' }, always_show_bufferline = true, - sort_by = "insert_after_current" + sort_by = "insert_at_end" } } end