diff options
author | Arctic Ice Studio <development@arcticicestudio.com> | 2020-10-08 21:48:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 21:48:31 +0200 |
commit | ea7ff9c343392ec6dfac4e9ec3fe0c45afb92a40 (patch) | |
tree | 3298708e326e21628a9364364d83fde4b824aeb2 | |
parent | b3c46c8793f1f774a22011e70f9019decc4462ed (diff) | |
download | nord-vim-ea7ff9c343392ec6dfac4e9ec3fe0c45afb92a40.tar.gz |
Add support for the "nathanaelkane/vim-indent-guides" plugin (#226)
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
-rwxr-xr-x | colors/nord.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index f684dd5..5a251da 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -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, "", "") |