The vimrc file checks if it can execute node js on line 42: `if !executable('node') || !executable('npm')` node is executed by issuing `nodejs` by default though, the check should be `if !executable('nodejs') || !executable('npm')`