diff options
Diffstat (limited to 'bundle/diff-corrections/plugin/diff_corrections.vim')
-rw-r--r-- | bundle/diff-corrections/plugin/diff_corrections.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bundle/diff-corrections/plugin/diff_corrections.vim b/bundle/diff-corrections/plugin/diff_corrections.vim new file mode 100644 index 0000000..c3dd8bc --- /dev/null +++ b/bundle/diff-corrections/plugin/diff_corrections.vim @@ -0,0 +1,8 @@ +augroup diff_corrections + autocmd! + + autocmd BufEnter * if &diff + \| highlight Comment ctermfg=7 + \| set nocursorline + \| endif +augroup END |