load bufferline when entering a buffer

This commit is contained in:
Adithya 2024-06-10 01:45:39 +05:30
parent cd9ba2d0c2
commit 4044951f0c
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ local Plugin = { "akinsho/bufferline.nvim" }
Plugin.version = "*"
Plugin.dependencies = "nvim-tree/nvim-web-devicons"
Plugin.event = "VeryLazy"
Plugin.event = "BufEnter"
function Plugin.init()
vim.opt.termguicolors = true

View file

@ -1,6 +1,6 @@
local Plugin = { "lewis6991/gitsigns.nvim" }
Plugin.event = { "BufReadPre", "BufNewFile" }
Plugin.event = { "BufReadPost", "BufNewFile" }
-- See :help gitsigns-usage
Plugin.opts = {