This commit is contained in:
2025-09-19 19:57:27 +02:00
commit e4bca2cc5d
19 changed files with 480 additions and 0 deletions

15
lua/config/gui.lua Normal file
View File

@ -0,0 +1,15 @@
local alpha = function()
return string.format("%x", math.floor(255 * vim.g.transparency or 0.8))
end
if vim.g.neovide then
vim.o.guifont = "Envy Code R:h18" -- text below applies for VimScript
vim.g.transparency = 0
vim.g.neovide_transparency = 1
vim.g.neovide_background_color = "#0f1117" .. alpha()
vim.g.neovide_scale_factor = 1.0
vim.g.neovide_window_blurred = true
vim.g.neovide_cursor_animation_length = 0.08
vim.g.neovide_cursor_trail_size = 0.5
vim.g.neovide_scroll_animation_length = 0.1
end