summaryrefslogtreecommitdiff
path: root/config/plugins/bufferline.lua
blob: a74dfa298ab1a477c2ffe805eba0d3b3350ea5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require("bufferline").setup({
	options = {
		always_show_bufferline = false,

		diagnostics = "nvim_lsp",

		mode = "buffers",
		numbers = "ordinal",
		separator_style = "slant",

		offsets = {
			{
				filetype = "neo-tree",
				text = "neo-tree",
				highlight = "Directory",
				text_align = "left",
			},
		},
	},
})