Remove unused variables

This commit is contained in:
Arkaprabha Chakraborty 2023-09-09 11:22:29 +05:30
parent e535cde681
commit 003452d28e
No known key found for this signature in database
GPG key ID: 3A4E2B952EE60E17

View file

@ -136,7 +136,7 @@ if colorscheme == "gruvbox" then
end
if colorscheme == "nord" then
local ok, nord = pcall(require, "nord")
local ok = pcall(require, "nord")
if not ok then
return
end
@ -145,7 +145,7 @@ if colorscheme == "nord" then
end
if colorscheme == "everforest" then
local ok, everforest = pcall(require, "nord")
local ok = pcall(require, "nord")
if not ok then
return
end