aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/diff-corrections
diff options
context:
space:
mode:
Diffstat (limited to 'bundle/diff-corrections')
-rw-r--r--bundle/diff-corrections/plugin/diff_corrections.vim8
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