Update bufferline.lua to sort buffers by inserting them at the end instead of after the current one

This commit is contained in:
PeteChu 2023-04-06 01:45:28 +07:00
parent 606b0572d2
commit f29cf2a00d
1 changed files with 1 additions and 1 deletions

View File

@ -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