refactor(nvim): update neovide floating values
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 42s
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 42s
This commit is contained in:
parent
2465350e9c
commit
8454b104c4
@ -1,14 +1,17 @@
|
||||
-- Floating and Popupmenu Transparency
|
||||
vim.opt.winblend = 10
|
||||
vim.opt.pumblend = 70
|
||||
vim.opt.winblend = 30
|
||||
vim.opt.pumblend = 90
|
||||
|
||||
|
||||
-- Float blur amount
|
||||
vim.g.neovide_floating_blur_amount_x = 10.0
|
||||
vim.g.neovide_floating_blur_amount_y = 10.0
|
||||
vim.g.neovide_floating_blur_amount_x = 25.0
|
||||
vim.g.neovide_floating_blur_amount_y = 25.0
|
||||
vim.g.neovide_light_angle_degrees = 45
|
||||
vim.g.neovide_light_radius = 5
|
||||
|
||||
-- Floating window corner radius
|
||||
vim.g.neovide_floating_corner_radius = 0.2
|
||||
|
||||
-- Do not use fullscreen on startup — annoying af
|
||||
vim.g.neovide_remember_window_size = false
|
||||
vim.g.neovide_fullscreen = false
|
||||
|
@ -189,7 +189,8 @@ return {
|
||||
|
||||
---@diagnostic disable-next-line: missing-fields
|
||||
menu = {
|
||||
winblend = 50,
|
||||
---@diagnostic disable-next-line: undefined-field
|
||||
winblend = vim.g.neovide and 90,
|
||||
draw = {
|
||||
padding = { 0, 1 },
|
||||
components = {
|
||||
|
Loading…
Reference in New Issue
Block a user