aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/bufferline.lua
blob: 337ac4f9c0d2adf91fbcb2cc52f60818292a504c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
    'akinsho/bufferline.nvim', -- bufferline
    version = "v4.*",
    dependencies = 'nvim-tree/nvim-web-devicons',
    opts = {
        options = {
            mode = "tabs",
            show_tab_indicators = false,
            hover = {
                enabled = true,
                delay = 200
            }
        }
    }
}