From: Tran Duc Binh Date: Mon, 22 Aug 2022 09:34:23 +0000 (+0700) Subject: chore: fix some variable names X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=415ca84dc585c57859d7d142165e582755248139;p=nvim-plugins%2Fflatwhite.git chore: fix some variable names --- diff --git a/lua/dracula/init.lua b/lua/dracula/init.lua index 17cbb89..11a384a 100644 --- a/lua/dracula/init.lua +++ b/lua/dracula/init.lua @@ -73,8 +73,8 @@ local function apply(configs) end -- run highlights link commands - for group, command in pairs(links) do - nvim_set_hl(0, group, command) + for group, setting in pairs(links) do + nvim_set_hl(0, group, setting) end end