I would like to *.pyc files not to be shown in NERDTree vim plugin.
*.pyc
How to achieve that?
You want the NERDTreeIgnore option. For example, in your .vimrc:
NERDTreeIgnore
.vimrc
let NERDTreeIgnore = ['\.pyc$']
Where NERDTreeIgnore is an array of regular expressions that match the files you want to exclude.