When vim is used to write python codes, some keywords in the comments are highlighting with different colors. And the keywords can be found in /usr/share/vim/vim80/syntax/python.vim, where there is a line:
syn keyword pythonTodo FIXME NOTE NOTES TODO XXX contained
so the words FIXME, NOTE, NOTES, TODO, XXX in the comments will be highlighted.
Now I want to add more words in it, such as adding DEBUG, WARNING but I don't have sudo so I can not directly edit this file. Is there anyway to solve it? What if I want to specify the color for different words? For example, red for DEBUG, yellow for WARNING.




