mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(bufferline): prevent tabline pop-(in/out)
bufferline.nvim updates the showtabline option in its `setup()`, so if showtabline is set to a conflicting value prior to loading bufferline, the user will see it flash in/out as the UI loads. Change the event that loads the plugin from `VeryLazy` to `UIEnter` to avoid this
This commit is contained in:
parent
530e94a9fa
commit
116354a7c5
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ return {
|
|||
-- tabs, which include filetype icons and close buttons.
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
event = "VeryLazy",
|
||||
event = "UIEnter",
|
||||
keys = {
|
||||
{ "<leader>bp", "<Cmd>BufferLineTogglePin<CR>", desc = "Toggle Pin" },
|
||||
{ "<leader>bP", "<Cmd>BufferLineGroupClose ungrouped<CR>", desc = "Delete Non-Pinned Buffers" },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue