You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
384 B
Lua

-- Add a buffer bar at the top.
vim.api.nvim_set_var('airline#extensions#tabline#enabled', true)
-- Change the formatter for the tab/buffer bar.
-- Here's a full list of the different formatters:
-- - default
-- - jsformatter
-- - unique_tail
-- - unique_tail_improved
vim.api.nvim_set_var('airline#extensions#tabline#formatter',
'unique_tail_improved')