vim
vim copied to clipboard
Consider `muted` instead of `overlay` in lightline foreground
I find the foreground of the inactive windows in lightline to be unreadable. Please consider the following change:
diff --git i/templates/_lightline w/templates/_lightline
index 6050893..7404cfd 100644
--- i/templates/_lightline
+++ w/templates/_lightline
@@ -22,9 +22,9 @@ if &background ==# '@background'
let s:p.normal.error = [ [ s:overlay, s:iris ] ]
let s:p.normal.warning = [ [ s:surface, s:foam ] ]
- let s:p.inactive.left = [ [ s:overlay, s:surface ], [ s:overlay, s:surface ] ]
- let s:p.inactive.right = [ [ s:overlay, s:surface ], [ s:overlay, s:surface ] ]
- let s:p.inactive.middle = [ [ s:overlay, s:surface ] ]
+ let s:p.inactive.left = [ [ s:muted, s:surface ], [ s:muted, s:surface ] ]
+ let s:p.inactive.right = [ [ s:muted, s:surface ], [ s:muted, s:surface ] ]
+ let s:p.inactive.middle = [ [ s:muted, s:surface ] ]
let s:p.insert.left = [ [ s:base, s:pine, 'bold' ], [ s:text, s:surface ] ]
let s:p.insert.right = [ [ s:base, s:pine ], [ s:text, s:surface ] ]
On the left dawn and moon as they are now. On the right is the suggested change applied.
I would love to revamp our vim theme entirely. Will definitely prioritise this change :)
I hope this gets implemented!