@@ -13,7 +13,7 @@ if version > 580
13
13
endif
14
14
15
15
let g: colors_name = " nord"
16
- let s: nord_vim_version= " 0.14 .0"
16
+ let s: nord_vim_version= " 0.15 .0"
17
17
set background = dark
18
18
19
19
let s: nord0_gui = " #2E3440"
@@ -566,13 +566,6 @@ call s:hi("CocErrorSign" , s:nord11_gui, "", s:nord11_term, "", "", "")
566
566
call s: hi (" CocInfoSign" , s: nord8_gui , " " , s: nord8_term , " " , " " , " " )
567
567
call s: hi (" CocHintSign" , s: nord10_gui , " " , s: nord10_term , " " , " " , " " )
568
568
569
- " Coc
570
- " > neoclide/coc
571
- call s: hi (" CocWarningSign" , s: nord13_gui , " " , s: nord13_term , " " , " " , " " )
572
- call s: hi (" CocErrorSign" , s: nord11_gui , " " , s: nord11_term , " " , " " , " " )
573
- call s: hi (" CocWarningSign" , s: nord13_gui , " " , s: nord13_term , " " , " " , " " )
574
- call s: hi (" CocErrorSign" , s: nord11_gui , " " , s: nord11_term , " " , " " , " " )
575
-
576
569
" Nvim LSP
577
570
" > neovim/nvim-lsp
578
571
call s: hi (" LSPDiagnosticsWarning" , s: nord13_gui , " " , s: nord13_term , " " , " " , " " )
@@ -615,6 +608,36 @@ hi! link NERDTreeHelp Comment
615
608
hi ! link CtrlPMatch Keyword
616
609
hi ! link CtrlPBufferHid Normal
617
610
611
+ " vim-clap
612
+ " > liuchengxu/vim-clap
613
+ call s: hi (" ClapDir" , s: nord4_gui , " " , " " , " " , " " , " " )
614
+ call s: hi (" ClapDisplay" , s: nord4_gui , s: nord1_gui , " " , s: nord1_term , " " , " " )
615
+ call s: hi (" ClapFile" , s: nord4_gui , " " , " " , " NONE" , " " , " " )
616
+ call s: hi (" ClapMatches" , s: nord8_gui , " " , s: nord8_term , " " , " " , " " )
617
+ call s: hi (" ClapNoMatchesFound" , s: nord13_gui , " " , s: nord13_term , " " , " " , " " )
618
+ call s: hi (" ClapSelected" , s: nord7_gui , " " , s: nord7_term , " " , s: bold , " " )
619
+ call s: hi (" ClapSelectedSign" , s: nord9_gui , " " , s: nord9_term , " " , " " , " " )
620
+
621
+ let s: clap_matches = [
622
+ \ [s: nord8_gui , s: nord8_term ] ,
623
+ \ [s: nord9_gui , s: nord9_term ] ,
624
+ \ [s: nord10_gui , s: nord10_term ] ,
625
+ \ ]
626
+ for s: nord_clap_match_i in range (1 ,12 )
627
+ let clap_match_color = s: clap_matches [s: nord_clap_match_i % len (s: clap_matches ) - 1 ]
628
+ call s: hi (" ClapMatches" . s: nord_clap_match_i , clap_match_color[0 ], " " , clap_match_color[1 ], " " , " " , " " )
629
+ call s: hi (" ClapFuzzyMatches" . s: nord_clap_match_i , clap_match_color[0 ], " " , clap_match_color[1 ], " " , " " , " " )
630
+ endfor
631
+ unlet s: nord_clap_match_i
632
+
633
+ hi ! link ClapCurrentSelection PmenuSel
634
+ hi ! link ClapCurrentSelectionSign ClapSelectedSign
635
+ hi ! link ClapInput Pmenu
636
+ hi ! link ClapPreview Pmenu
637
+ hi ! link ClapProviderAbout ClapDisplay
638
+ hi ! link ClapProviderColon Type
639
+ hi ! link ClapProviderId Type
640
+
618
641
" vim-plug
619
642
" > junegunn/vim-plug
620
643
call s: hi (" plugDeleted" , s: nord11_gui , " " , " " , s: nord11_term , " " , " " )
@@ -652,6 +675,47 @@ hi! link jsNoise Delimiter
652
675
hi ! link jsPrototype Keyword
653
676
hi ! link jsRegexpString SpecialChar
654
677
678
+ " TypeScript
679
+ " > HerringtonDarkholme/yats.vim
680
+ call s: hi (" typescriptBOMWindowMethod" , s: nord8_gui , " " , s: nord8_term , " " , s: italic , " " )
681
+ call s: hi (" typescriptClassName" , s: nord7_gui , " " , s: nord7_term , " " , " " , " " )
682
+ call s: hi (" typescriptDecorator" , s: nord12_gui , " " , s: nord12_term , " " , " " , " " )
683
+ call s: hi (" typescriptInterfaceName" , s: nord7_gui , " " , s: nord7_term , " " , s: bold , " " )
684
+ call s: hi (" typescriptRegexpString" , s: nord13_gui , " " , s: nord13_term , " " , " " , " " )
685
+ " TypeScript JSX
686
+ call s: hi (" tsxAttrib" , s: nord7_gui , " " , s: nord7_term , " " , " " , " " )
687
+ hi ! link typescriptOperator Operator
688
+ hi ! link typescriptBinaryOp Operator
689
+ hi ! link typescriptAssign Operator
690
+ hi ! link typescriptMember Identifier
691
+ hi ! link typescriptDOMStorageMethod Identifier
692
+ hi ! link typescriptArrowFuncArg Identifier
693
+ hi ! link typescriptGlobal typescriptClassName
694
+ hi ! link typescriptBOMWindowProp Function
695
+ hi ! link typescriptArrowFuncDef Function
696
+ hi ! link typescriptAliasDeclaration Function
697
+ hi ! link typescriptPredefinedType Type
698
+ hi ! link typescriptTypeReference typescriptClassName
699
+ hi ! link typescriptTypeAnnotation Structure
700
+ hi ! link typescriptDocNamedParamType SpecialComment
701
+ hi ! link typescriptDocNotation Keyword
702
+ hi ! link typescriptDocTags Keyword
703
+ hi ! link typescriptImport Keyword
704
+ hi ! link typescriptExport Keyword
705
+ hi ! link typescriptTry Keyword
706
+ hi ! link typescriptVariable Keyword
707
+ hi ! link typescriptBraces Normal
708
+ hi ! link typescriptObjectLabel Normal
709
+ hi ! link typescriptCall Normal
710
+ hi ! link typescriptClassHeritage typescriptClassName
711
+ hi ! link typescriptFuncTypeArrow Structure
712
+ hi ! link typescriptMemberOptionality Structure
713
+ hi ! link typescriptNodeGlobal typescriptGlobal
714
+ hi ! link typescriptTypeBrackets Structure
715
+ hi ! link tsxEqual Operator
716
+ hi ! link tsxIntrinsicTagName htmlTag
717
+ hi ! link tsxTagName tsxIntrinsicTagName
718
+
655
719
" Markdown
656
720
" > plasticboy/vim-markdown
657
721
call s: hi (" mkdCode" , s: nord7_gui , " " , s: nord7_term , " " , " " , " " )
0 commit comments