Creating helper function

dev
otherJL0 3 years ago
parent 7376549e23
commit d6b971aa29

@ -62,6 +62,15 @@ local mode_colors = {
local shortline = false local shortline = false
local function is_enabled(is_shortline, winid, min_width)
if is_shortline then
return true
end
winid = winid or 0
return vim.api.nvim_win_get_width(winid) > min_width
end
-- Initialize the components table -- Initialize the components table
local components = { local components = {
active = {}, active = {},

Loading…
Cancel
Save