Skip to content

Commit

Permalink
feat: DapUIEndOfBuffer highlight (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmithgh committed Feb 9, 2023
1 parent 94aa67d commit 100c67d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lua/dapui/config/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ function M.setup()
hi default DapUIRestart guifg=#A9FF68
hi default DapUIUnavailable guifg=#424242
hi default DapUIWinSelect ctermfg=Cyan guifg=#00f1f5 gui=bold
hi default link DapUIEndofBuffer EndofBuffer
]])

-- Generate *NC variants of the control highlight groups
Expand Down
2 changes: 1 addition & 1 deletion lua/dapui/windows/layout.lua
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function WindowLayout:_init_win_settings(win)
for key, val in pairs(win_settings) do
api.nvim_win_set_option(win, key, val)
end
vim.fn.setwinvar(win, "&winhl", "Normal:DapUINormal,EndOfBuffer:DapUINormal")
vim.fn.setwinvar(win, "&winhl", "Normal:DapUINormal,EndOfBuffer:DapUIEndOfBuffer")
end

function WindowLayout:new(layout)
Expand Down

0 comments on commit 100c67d

Please sign in to comment.