Skip to content

Commit

Permalink
Add support for the "nathanaelkane/vim-indent-guides" plugin (#226)
Browse files Browse the repository at this point in the history
The even and odd highlighting blocks using `nord1` and `nord2` (`nord3`
in terminal mode) to provide a subtle and non-disturbing style.

Note that the custom theme colors [1] are only applied when the
`indent_guides_auto_colors` variable has been set to `0`:

```vim
let g:indent_guides_auto_colors = 0
```

[1]: https://github.com/nathanaelkane/vim-indent-guides#setting-custom-indent-colors

Resolves GH-186
  • Loading branch information
arcticicestudio authored Oct 8, 2020
1 parent b3c46c8 commit ea7ff9c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions colors/nord.vim
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,11 @@ hi! link ClapProviderAbout ClapDisplay
hi! link ClapProviderColon Type
hi! link ClapProviderId Type

" vim-indent-guides
" > nathanaelkane/vim-indent-guides
call s:hi("IndentGuidesEven", "", s:nord1_gui, "", s:nord1_term, "", "")
call s:hi("IndentGuidesOdd", "", s:nord2_gui, "", s:nord3_term, "", "")

" vim-plug
" > junegunn/vim-plug
call s:hi("plugDeleted", s:nord11_gui, "", "", s:nord11_term, "", "")
Expand Down

0 comments on commit ea7ff9c

Please sign in to comment.