refactor(nvim): disable tabline

This commit is contained in:
Price Hiller 2022-10-25 19:26:43 -05:00
parent bc8203b6c6
commit d76b40c1fa

View File

@ -122,6 +122,9 @@ M.setup = function()
-- Set splitkeep
vim.opt.splitkeep = "screen"
-- Hide the tabline
vim.opt.showtabline = 0
end
return M