Skip to content

Commit

Permalink
Add support for chr4/nginx.vim
Browse files Browse the repository at this point in the history
  • Loading branch information
cocopon committed Aug 2, 2018
1 parent a24c9b6 commit f315d09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion colors/iceberg.vim
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"
" File: iceberg.vim
" Maintainer: cocopon <[email protected]>
" Modified: 2018-07-27 15:10+0900
" Modified: 2018-08-02 13:01+0900
" License: MIT


Expand Down Expand Up @@ -177,6 +177,7 @@ hi! link markdownCode String
hi! link markdownCodeDelimiter String
hi! link markdownHeadingDelimiter Comment
hi! link markdownRule Comment
hi! link ngxDirective Statement
hi! link plug1 Normal
hi! link plug2 Identifier
hi! link plugDash Comment
Expand Down
3 changes: 3 additions & 0 deletions src/iceberg.vim
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,9 @@ function! s:create_context() abort
call add(links, pgmnt#hi#link('markdownHeadingDelimiter', 'Comment'))
call add(links, pgmnt#hi#link('markdownRule', 'Comment'))

" [nginx.vim](https://github.com/chr4/nginx.vim)
call add(links, pgmnt#hi#link('ngxDirective', 'Statement'))

" [vim-plug](https://github.com/junegunn/vim-plug)
call add(links, pgmnt#hi#link('plug1', 'Normal'))
call add(links, pgmnt#hi#link('plug2', 'Identifier'))
Expand Down

0 comments on commit f315d09

Please sign in to comment.