diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,4 +1,13 @@ # luatab.nvim +## Features +* Just a lua rewrite of the tabline render function +* No weird mixing buffers and tabs stuff + +## Install +Using packer.nvim: +``` +use { 'alvarosevilla95/luatab.nvim', requires='kyazdani42/nvim-web-devicons' } +``` ## Usage Add this to your init.lua: @@ -8,8 +17,9 @@ Tabline = require'tabline'.tabline vim.cmd[[ set tabline=%!luaeval('Tabline()') ]] ``` -Note: `require'tabline'.tabline` must be assigned to a global variable for it to be picked up by `luaeval` +Note: `require'tabline'.tabline` must be assigned to a global variable for it to be picked up by `luaeval`. If you know a better method, PRs are welcome. +## Configuration You can also define your own tabline function using the provided functions for help. The default tabline is equivalent to: ``` local formatTab = require'luatab'.formatTab |