aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/diff-corrections/autoload/diff_corrections.vim
blob: c9e77ff0b9ad47562a0196fb258deb52e9603702 (plain)
1
2
3
4
5
6
7
8
9
function! diff_corrections#Run()
	if &diff
		if exists('g:colors_name') && g:colors_name ==# 'twilight256'
			highlight Comment ctermfg=7
		endif

		set nocursorline
	endif
endfunction