Skip to content
Snippets Groups Projects
Commit d32ac42f authored by codecraft's avatar codecraft :crocodile:
Browse files

fix some lua error

parent fbc7b9ab
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ if vim.g.neovide then
-- Helper function for transparency formatting
local alpha = function()
return string.format("%x", math.floor(255 * vim.g.transparency or 0.899))
return string.format("%x", math.floor((255 * vim.g.transparency) or 0.899))
end
-- g:neovide_transparency should be 0 if you want to unify transparency of content and title bar.
vim.g.neovide_transparency = 0.6
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment