1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-08-25 20:38:15 +02:00

nvim: remove transparency

This commit is contained in:
Henrik Hautakoski 2026-07-03 17:33:44 +02:00
parent c8625cec76
commit 221579b47d
3 changed files with 3 additions and 7 deletions

View file

@ -23,8 +23,8 @@ vim.o.confirm = true
-- User interface -- User interface
------------------------------------------------------- -------------------------------------------------------
vim.o.winblend = 10 -- how much floating windows should blend with background. vim.o.winblend = 0 -- how much floating windows should blend with background.
vim.o.pumblend = 10 -- popup blend vim.o.pumblend = 0 -- popup blend
vim.o.pumheight = 15 -- popup height vim.o.pumheight = 15 -- popup height
-- Configure how new splits should be opened -- Configure how new splits should be opened

View file

@ -26,7 +26,6 @@ return {
}, },
menu = { menu = {
min_width = 18, min_width = 18,
winblend = 10,
draw = { draw = {
gap = 2, gap = 2,
columns = { columns = {
@ -47,9 +46,6 @@ return {
}, },
documentation = { documentation = {
auto_show = true, auto_show = true,
window = {
winblend = 10
}
}, },
ghost_text = { ghost_text = {
enabled = false, enabled = false,
@ -62,7 +58,6 @@ return {
enabled = true, enabled = true,
window = { window = {
scrollbar = false, scrollbar = false,
winblend = 10,
} }
} }
} }

View file

@ -21,6 +21,7 @@ return {
'nvim-tree/nvim-web-devicons', 'nvim-tree/nvim-web-devicons',
lazy = true, lazy = true,
opts = { opts = {
blend = 0,
override = { override = {
php = { php = {
icon = icons.filetypes.php, icon = icons.filetypes.php,