From 2b710aae12316f8fe934f3bbae05af8ece3e1e1b Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Fri, 8 Oct 2021 17:36:10 +0800 Subject: [PATCH] non italic TabLine closes #14 --- lua/zenbones/specs.lua | 2 +- lua/zenflesh/specs.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/zenbones/specs.lua b/lua/zenbones/specs.lua index f0e3a3e..f6f8322 100644 --- a/lua/zenbones/specs.lua +++ b/lua/zenbones/specs.lua @@ -93,7 +93,7 @@ function M.generate(p, opt) StatusLine { bg = p.bg.da(14), fg = p.fg }, -- status line of current window StatusLineNC { bg = p.bg.da(10), fg = p.fg.li(28) }, -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window. - TabLine { StatusLine, gui = "italic" }, -- tab pages line, not active tab page label + TabLine { StatusLine }, -- tab pages line, not active tab page label TabLineFill { StatusLineNC }, -- tab pages line, where there are no labels TabLineSel { gui = "bold" }, -- tab pages line, active tab page label VertSplit { LineNr }, -- the column separating vertically split windows diff --git a/lua/zenflesh/specs.lua b/lua/zenflesh/specs.lua index 0b6a042..8ac311f 100644 --- a/lua/zenflesh/specs.lua +++ b/lua/zenflesh/specs.lua @@ -93,7 +93,7 @@ function M.generate(p, opt) StatusLine { bg = p.bg.li(16), fg = p.fg }, -- status line of current window StatusLineNC { bg = p.bg.li(11), fg = p.fg.li(28) }, -- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window. - TabLine { StatusLine, gui = "italic" }, -- tab pages line, not active tab page label + TabLine { StatusLine }, -- tab pages line, not active tab page label TabLineFill { StatusLineNC }, -- tab pages line, where there are no labels TabLineSel { gui = "bold" }, -- tab pages line, active tab page label VertSplit { LineNr }, -- the column separating vertically split windows