From 75a711ae114bb96e3d89c8082efc13e56a71edf1 Mon Sep 17 00:00:00 2001 From: "Gallo, Steven" Date: Fri, 6 Mar 2020 10:24:48 -0500 Subject: [PATCH] Add keywords for better SQL syntax hilighting --- colors/codedark.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index b043c16..4256585 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -430,3 +430,8 @@ call hi('luaFuncArgName', s:cdLightBlue, {}, 'none', {}) call hi('luaFuncKeyword', s:cdPink, {}, 'none', {}) call hi('luaLocal', s:cdPink, {}, 'none', {}) call hi('luaBuiltIn', s:cdBlue, {}, 'none', {}) + +" SQL: +call hi('sqlKeyword', s:cdPink, {}, 'none', {}) +call hi('sqlFunction', s:cdYellowOrange, {}, 'none', {}) +call hi('sqlOperator', s:cdPink, {}, 'none', {})