diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,11 +16,11 @@ use { 'alvarosevilla95/luatab.nvim', requires='kyazdani42/nvim-web-devicons' } Add this to your init.lua: ``` -Tabline = require'tabline'.tabline +Tabline = require'luatab'.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`. If you know a better method, PRs are welcome. +Note: `require'luatab'.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: |