comparison vendor/vim-packs/srcery-vim/after/syntax/haskell.vim @ 704:1e0f578f6752

Update vendor and add support for vim packs
author nanaya <me@nanaya.net>
date Sun, 18 Dec 2022 20:06:46 +0900
parents
children
comparison
equal deleted inserted replaced
703:b7cd7465cc26 704:1e0f578f6752
1 if srcery#helper#ShouldAbort('haskell')
2 finish
3 endif
4
5 " Haskell: {{{
6
7 " hi! link haskellType SrceryYellow
8 " hi! link haskellOperators SrceryYellow
9 " hi! link haskellConditional SrceryCyan
10 " hi! link haskellLet SrceryYellow
11
12 hi! link haskellType SrceryBlue
13 hi! link haskellIdentifier SrceryBlue
14 hi! link haskellSeparator SrceryBlue
15 hi! link haskellDelimiter SrceryBrightWhite
16 hi! link haskellOperators SrceryBlue
17
18 hi! link haskellBacktick SrceryYellow
19 hi! link haskellStatement SrceryYellow
20 hi! link haskellConditional SrceryYellow
21
22 hi! link haskellLet SrceryCyan
23 hi! link haskellDefault SrceryCyan
24 hi! link haskellWhere SrceryCyan
25 hi! link haskellBottom SrceryCyan
26 hi! link haskellBlockKeywords SrceryCyan
27 hi! link haskellImportKeywords SrceryCyan
28 hi! link haskellDeclKeyword SrceryCyan
29 hi! link haskellDeriving SrceryCyan
30 hi! link haskellAssocType SrceryCyan
31
32 hi! link haskellNumber SrceryMagenta
33 hi! link haskellPragma SrceryMagenta
34
35 hi! link haskellString SrceryGreen
36 hi! link haskellChar SrceryGreen
37
38 " }}}