aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorch1p <me@ch1p.com>2015-07-27 15:50:56 +0300
committerch1p <me@ch1p.com>2015-07-27 15:50:56 +0300
commitdc0791c7fd422bf2cddfc9c8049737703f336d5a (patch)
tree53317531e9f7e199b2cdbfa348be1fe3c5a9acfb
parent9ec1d220db744ca422ab4f67dd152ae622bcfd9b (diff)
php improvements
-rw-r--r--vendetta.vim11
1 files changed, 6 insertions, 5 deletions
diff --git a/vendetta.vim b/vendetta.vim
index 15ec575..d88005d 100644
--- a/vendetta.vim
+++ b/vendetta.vim
@@ -8,10 +8,9 @@ let s:comment = "888888"
let s:red = "DE575C"
let s:orange = "ED934C"
let s:yellow = "EBE971"
-" prev green color: 4AC254
let s:green = "00b853"
-let s:aqua = "37e7e9"
-let s:blue = "7FBFF0"
+let s:aqua = "4ae5e8"
+let s:blue = "7fc6f0"
let s:purple = "CF9FE6"
let s:window = "4d5057"
let s:tab_bg = "333333"
@@ -310,15 +309,17 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("phpVarSelector", s:yellow, "", "")
call <SID>X("phpKeyword", s:yellow, "", "")
call <SID>X("phpIdentifier", s:blue, "", "")
+ call <SID>X("phpType", s:aqua, "", "")
"call <SID>X("phpOperator", s:yellow,"","")
call <SID>X("phpRepeat", s:yellow, "", "")
- call <SID>X("phpConditional", s:purple, "", "")
+ call <SID>X("phpConditional", s:blue, "", "")
call <SID>X("phpStatement", s:yellow, "", "")
- call <SID>X("phpMemberSelector", s:foreground, "", "")
+ call <SID>X("phpMemberSelector", s:blue, "", "")
call <SID>X("phpStringSingle", s:orange, "", "")
call <SID>X("phpDefine", s:red, "", "")
call <SID>X("phpStorageClass", s:blue, "", "")
call <SID>X("phpStructure", s:blue, "", "")
+ call <SID>X("phpParent", s:foreground, "", "")
" Python Highlighting
call <SID>X("pythonConditional", s:blue, "", "")