summaryrefslogtreecommitdiff
path: root/.config/nvim/after/plugin/xbufferline.lua
blob: 3994b795ca1f716ba38052677e2080081dcd7940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-- This file is intentionally call xbufferline.lua so that it loads last.
-- This is so we can get access to the loaded and configured nord color scheme.
local highlights = require("nord").bufferline.highlights()

require("bufferline").setup({
    options = {
        show_close_icon = false,
        show_buffer_close_icons = false,
    },
    highlights = highlights
})