From 334f9718633cd710381ee385765874f7e9f34db3 Mon Sep 17 00:00:00 2001 From: Josh Dick Date: Tue, 7 Jul 2020 11:58:07 -0400 Subject: [PATCH] Add Dart highlighting support Implements #226. --- colors/onedark.vim | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/colors/onedark.vim b/colors/onedark.vim index b45539d..0bbbea0 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -297,6 +297,18 @@ call s:h("cssSelectorOp", { "fg": s:purple }) call s:h("cssSelectorOp2", { "fg": s:purple }) call s:h("cssTagName", { "fg": s:red }) +" Dart +call s:h("dartTypeDef", { "fg": s:red }) +call s:h("dartClassDecl", { "fg": s:red }) +call s:h("dartInterpolation", { "fg": s:blue }) +highlight link dartLibrary Include +call s:h("dartCoreClasses", { "fg": s:cyan }) +call s:h("dartSdkClas", { "fg": s:cyan }) +call s:h("dartStorageClass", { "fg": s:dark_red }) +highlight link dartExceptions Exception +highlight link dartStatement Statement +call s:h("dartConstant", { "fg": s:dark_yellow }) + " Fish Shell call s:h("fishKeyword", { "fg": s:purple }) call s:h("fishConditional", { "fg": s:purple })