Custom tabline plugin for adding functionality to your projects. Instead of setting up buffer tabs, set up custom display elements for your Neovim!
This is a personal project to customize my own tab line preferences. The structure is intended to let you add your own methods and displays to fit your workflow.
Packer:
plugin { 'andrewjwaggoner/cabline.nvim' }
Default configuration
require('cabline').setup({
convert_selection = true, -- turns on Cabline's hex/decimal/binary converter.
tabline_override = false -- tabline construction method override. Use this to supply your own.
})
The plugin overrides vim.g.tabline
with a hook to Cabline's tabline builder.
If you have a plugin that utilizes this, it will interfere with Cabline.nvim.