Small change

This commit is contained in:
2024-11-25 18:44:10 +01:00
parent 0a41349f1c
commit 7e85dd2e99
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ return {
local command = { "fd", "-H", "--type", "file" }
local ignored = { ".git" }
for i, v in ipairs(ignored) do
for _, v in ipairs(ignored) do
table.insert(command, "--exclude")
table.insert(command, v)
end

View File

@@ -11,7 +11,7 @@ local getAllThemes = function()
local newpath = string.gsub(dataDir, "%-", "%%-")
local themes = {}
for i, v in ipairs(colors) do
for _, v in ipairs(colors) do
if string.find(v, "lazy") then
local filename = ""
if vim.loop.os_uname().sysname == "Windows_NT" then