From 299c65cd0a4344cb89ad1c5df9d90d2026dd8156 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 4 Apr 2022 16:53:45 +0200 Subject: [PATCH] feat: show buffer number --- nvim/lua/plugins.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index cb70a95..546a257 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -44,7 +44,10 @@ return require('packer').startup(function(use) config = function() require'tabline'.setup { enable = true, - options = {show_filename_only = true} + options = { + show_bufnr = true, + show_filename_only = true, + } } end, requires = {