diff --git a/lua/plex/plugins/extras/ui/bufferline.lua b/lua/plex/plugins/extras/ui/bufferline.lua index 9fdeb9c..990c0fd 100644 --- a/lua/plex/plugins/extras/ui/bufferline.lua +++ b/lua/plex/plugins/extras/ui/bufferline.lua @@ -4,11 +4,19 @@ return { event = 'VeryLazy', opts = { options = { + -- :h bufferline-configuration mode = 'tabs', - separator_style = 'slant', + separator_style = {"╱", "╱"}, + themable = true, + numbers = "ordinal", show_close_icon = false, show_buffer_close_icons = false, - diagnostics = false, + diagnostics = true, + indicator = { + -- icon = ' ', -- this should be omitted if indicator style is not 'icon' + -- windows terminal sucks + style = 'none', + }, always_show_bufferline = true, diagnostics_indicator = function(_, _, diag) local icons = require('plex.config').icons.diagnostics @@ -39,6 +47,7 @@ return { text_align = 'center', }, }, + }, }, },