From 78db200b12d5322f43ac518adc8da0d90864a552 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Mon, 25 Feb 2019 23:50:11 +0100 Subject: [PATCH] Correct typo in README s/ctermb=/ctermbg=/ --- README.mkd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.mkd b/README.mkd index a457954..a08507b 100644 --- a/README.mkd +++ b/README.mkd @@ -288,9 +288,9 @@ You can either set these with `highlight GitGutterAdd {key}={arg}...` or link th To get vim-gitgutter's original colours (based on git-diff's colours in my terminal): ```viml -highlight GitGutterAdd guifg=#009900 guibg= ctermfg=2 ctermb= -highlight GitGutterChange guifg=#bbbb00 guibg= ctermfg=3 ctermb= -highlight GitGutterDelete guifg=#ff2222 guibg= ctermfg=1 ctermb= +highlight GitGutterAdd guifg=#009900 guibg= ctermfg=2 ctermbg= +highlight GitGutterChange guifg=#bbbb00 guibg= ctermfg=3 ctermbg= +highlight GitGutterDelete guifg=#ff2222 guibg= ctermfg=1 ctermbg= ``` – where you would replace `` and `` with the background colour of your `SignColumn` in the gui and the terminal respectively. For example, with the solarized colorscheme and a dark background, `guibg=#073642` and `ctermbg=0`.