Skip to content

Commit

Permalink
feat: match default border color to standard neovim float border hl (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ribru17 authored Dec 10, 2023
1 parent a70bdcf commit 55734c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/cmp/config/window.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ window.bordered = function(opts)
opts = opts or {}
return {
border = opts.border or 'rounded',
winhighlight = opts.winhighlight or 'Normal:Normal,FloatBorder:Normal,CursorLine:Visual,Search:None',
winhighlight = opts.winhighlight or 'Normal:Normal,FloatBorder:FloatBorder,CursorLine:Visual,Search:None',
zindex = opts.zindex or 1001,
scrolloff = opts.scrolloff or 0,
col_offset = opts.col_offset or 0,
Expand Down

0 comments on commit 55734c8

Please sign in to comment.