dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

python.vim (321B)


      1 if has('conceal')
      2   setl conceallevel=2 " Use concealchar and highlight with Conceal group
      3   syn match concealOperator "<=" conceal cchar=≤
      4   syn match concealOperator ">=" conceal cchar=≥
      5   syn keyword concealKeyword lambda conceal cchar=λ
      6   hi! link concealOperator Conceal
      7   hi! link concealKeyword Conceal
      8 endif