cleanup: tabstop = 8 -> 4
This commit is contained in:
parent
a968c3e157
commit
41edd2a850
@ -15,7 +15,7 @@ local g = vim.g
|
|||||||
--@return position number: a valid position for setting a variant from the variant table
|
--@return position number: a valid position for setting a variant from the variant table
|
||||||
local function change_variant(v_tab, pos)
|
local function change_variant(v_tab, pos)
|
||||||
if next(v_tab) == nil then return end
|
if next(v_tab) == nil then return end
|
||||||
return table.getn(v_tab) > pos and pos + 1 or 1
|
return #v_tab > pos and pos + 1 or 1
|
||||||
end
|
end
|
||||||
|
|
||||||
---Set a especific variant
|
---Set a especific variant
|
||||||
|
@ -52,7 +52,6 @@ local function load_colorscheme(scheme, custom_tab)
|
|||||||
for grp, col in pairs(color_table) do
|
for grp, col in pairs(color_table) do
|
||||||
set_highlights(grp, col)
|
set_highlights(grp, col)
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Set and load the color scheme
|
-- Set and load the color scheme
|
||||||
|
Loading…
Reference in New Issue
Block a user