mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-17 16:51:42 +00:00
14 lines
278 B
Lua
14 lines
278 B
Lua
-- set termguicolors to enable highlight groups
|
|
vim.opt.termguicolors = true
|
|
|
|
local ok, bufferline = pcall(require, "bufferline")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
bufferline.setup({
|
|
options = {
|
|
mode = "tabs", -- set to "buffers" to only show buffers instead
|
|
},
|
|
})
|