Skip to content

Commit

Permalink
Add empty lines after fenced code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelkane committed May 14, 2018
1 parent 05e4cc0 commit d3cf41d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ and then run the following command from inside Vim:
```vim
:PluginInstall
```

## Usage
The default mapping to toggle the plugin is `<Leader>ig`.

Expand All @@ -55,6 +56,7 @@ If you would like to have indent guides enabled by default, you can add the foll
```vim
let g:indent_guides_enable_on_vim_startup = 1
```

### gVim
**This plugin should work with gVim out of the box, no configuration needed.** It will automatically inspect your colorscheme and pick appropriate colors.

Expand All @@ -66,12 +68,14 @@ let g:indent_guides_auto_colors = 0
autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd guibg=red ctermbg=3
autocmd VimEnter,Colorscheme * :hi IndentGuidesEven guibg=green ctermbg=4
```

Alternatively you can add the following lines to your colorscheme file.

```vim
hi IndentGuidesOdd guibg=red ctermbg=3
hi IndentGuidesEven guibg=green ctermbg=4
```

### Terminal Vim
At the moment Terminal Vim only has basic support. This means is that colors won't be automatically calculated based on your colorscheme. Instead, some preset colors are used depending on whether `background` is set to `dark` or `light`.

Expand Down

0 comments on commit d3cf41d

Please sign in to comment.