cleanup: tabstop = 8 -> 4

This commit is contained in:
David JULIEN 2022-05-01 18:36:10 +02:00
parent a968c3e157
commit 41edd2a850
5 changed files with 258 additions and 259 deletions

View File

@ -15,7 +15,7 @@ local g = vim.g
--@return position number: a valid position for setting a variant from the variant table
local function change_variant(v_tab, pos)
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
---Set a especific variant

View File

@ -52,7 +52,6 @@ local function load_colorscheme(scheme, custom_tab)
for grp, col in pairs(color_table) do
set_highlights(grp, col)
end
end
-- Set and load the color scheme