Skip to content

Commit

Permalink
Update README for conflict-marker-size > 7
Browse files Browse the repository at this point in the history
  • Loading branch information
sybereal committed Nov 15, 2023
1 parent 8894662 commit 63a0a5b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,10 @@ group, and define your own highlights for each syntax group.
" disable the default highlight group
let g:conflict_marker_highlight_group = ''
" Include text after begin and end markers
let g:conflict_marker_begin = '^<<<<<<< .*$'
let g:conflict_marker_end = '^>>>>>>> .*$'
" Include text after begin, common ancestor, and end markers
let g:conflict_marker_begin = '^<\{7,} .*$'
let g:conflict_marker_common_ancestors = '^|\{7,} .*$'
let g:conflict_marker_end = '^>\{7,} .*$'
highlight ConflictMarkerBegin guibg=#2f7366
highlight ConflictMarkerOurs guibg=#2e5049
Expand Down

0 comments on commit 63a0a5b

Please sign in to comment.