Skip to content

Instantly share code, notes, and snippets.

View daimoniac's full-sized avatar
🇦🇹

Stefan Knott daimoniac

🇦🇹
View GitHub Profile
@daimoniac
daimoniac / python.vim
Last active March 23, 2018 09:17 — forked from andrusha/python.vim
Pretty math symbols for python
" place it in ~/.vim/after/syntax/python.vim
" we need the conceal feature (vim ≥ 7.3)
if !has('conceal')
finish
endif
" remove the keywords. we'll re-add them below
syntax clear pythonOperator
syntax keyword pythonOperator is