How to enable syntax conceal only in certain contexts in Vim?
Modify the pattern to match only the names delimited by word boundaries or underscores:
:syntax match scalaNiceKeyword '\(_\|\<\)\zsalpha\ze\(\>\|_\)' conceal cchar=α
Modify the pattern to match only the names delimited by word boundaries or underscores:
:syntax match scalaNiceKeyword '\(_\|\<\)\zsalpha\ze\(\>\|_\)' conceal cchar=α