Small change
This commit is contained in:
@@ -13,7 +13,7 @@ return {
|
|||||||
local command = { "fd", "-H", "--type", "file" }
|
local command = { "fd", "-H", "--type", "file" }
|
||||||
local ignored = { ".git" }
|
local ignored = { ".git" }
|
||||||
|
|
||||||
for i, v in ipairs(ignored) do
|
for _, v in ipairs(ignored) do
|
||||||
table.insert(command, "--exclude")
|
table.insert(command, "--exclude")
|
||||||
table.insert(command, v)
|
table.insert(command, v)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ local getAllThemes = function()
|
|||||||
local newpath = string.gsub(dataDir, "%-", "%%-")
|
local newpath = string.gsub(dataDir, "%-", "%%-")
|
||||||
local themes = {}
|
local themes = {}
|
||||||
|
|
||||||
for i, v in ipairs(colors) do
|
for _, v in ipairs(colors) do
|
||||||
if string.find(v, "lazy") then
|
if string.find(v, "lazy") then
|
||||||
local filename = ""
|
local filename = ""
|
||||||
if vim.loop.os_uname().sysname == "Windows_NT" then
|
if vim.loop.os_uname().sysname == "Windows_NT" then
|
||||||
|
|||||||
Reference in New Issue
Block a user