Skip to content

Commit

Permalink
Make NonText more prominent
Browse files Browse the repository at this point in the history
  • Loading branch information
muchzill4 committed Dec 18, 2024
1 parent 4e24331 commit 0f0b24d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion colors/doubletrouble.vim
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ highlight DiffDelete guifg=#E25A6A guibg=#471A26 guisp=NONE blend=NONE gui=NONE
highlight DiffText guifg=NONE guibg=#6C4B28 guisp=NONE blend=NONE gui=NONE
highlight Directory guifg=#6CA9EF guibg=NONE guisp=NONE blend=NONE gui=NONE
highlight EndOfBuffer guifg=#393D6A guibg=NONE guisp=NONE blend=NONE gui=NONE
highlight! link NonText EndOfBuffer
highlight! link VertSplit EndOfBuffer
highlight! link WinSeparator EndOfBuffer
highlight Error guifg=NONE guibg=#E25A6A guisp=NONE blend=NONE gui=NONE
Expand Down Expand Up @@ -77,6 +76,7 @@ highlight MoreMsg guifg=#7FC79B guibg=NONE guisp=NONE blend=NONE gui=NONE
highlight! link Question MoreMsg
highlight MsgArea guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
highlight MsgSeparator guifg=NONE guibg=NONE guisp=NONE blend=NONE gui=NONE
highlight NonText guifg=#565B8F guibg=NONE guisp=NONE blend=NONE gui=NONE
highlight NormalFloat guifg=NONE guibg=#262840 guisp=NONE blend=NONE gui=NONE
highlight! link Pmenu NormalFloat
highlight! link StatusLineNC Pmenu
Expand Down
2 changes: 1 addition & 1 deletion lua/doubletrouble/lush_theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ local theme = lush(function(injected_functions)
MsgArea {}, -- Area for messages and cmdline
MsgSeparator {}, -- Separator for scrolled messages, `msgsep` flag of 'display'
MoreMsg { fg = c.green }, -- |more-prompt|
NonText { EndOfBuffer }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
NonText { fg = c.black }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
Normal { bg = c.bg, fg = c.fg }, -- Normal text
NormalFloat { bg = c.bg_black }, -- Normal text in floating windows.
FloatBorder { fg = c.white, bg = c.bg_black },
Expand Down

0 comments on commit 0f0b24d

Please sign in to comment.