mirror of
https://github.com/arkorty/Neolite.git
synced 2026-05-07 10:02:15 +00:00
Remove unused variables
This commit is contained in:
parent
e535cde681
commit
003452d28e
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue