Highlight merge conflict markers, and move through conflict markers with ]c and [c
" Highlight merge conflict markers
match Todo '\v^(\<|\=|\>){7}([^=].+)?$'
" Jump to next/previous merge conflict marker
nnoremap <silent> ]c /\v^(\<\|\=\|\>){7}([^=].+)?$<CR>
nnoremap <silent> [c ?\v^(\<\|\=\|\>){7}([^=].+)\?$<CR>