From 8d8af7abeef92ae81336679688812c585baf241e Mon Sep 17 00:00:00 2001 From: Derek P Sifford Date: Sat, 7 Jul 2018 14:30:33 -0400 Subject: [PATCH] Add syntax highlight adjustments for python --- after/syntax/python.vim | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 after/syntax/python.vim diff --git a/after/syntax/python.vim b/after/syntax/python.vim new file mode 100644 index 0000000..a2d5c17 --- /dev/null +++ b/after/syntax/python.vim @@ -0,0 +1,9 @@ +if dracula#should_abort('python') + finish +endif + +hi! link pythonBuiltinObj Type +hi! link pythonBuiltinObject Type +hi! link pythonExClass Type +hi! link pythonNone Type +hi! link pythonRun Comment