mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-04 08:28:44 +00:00
7 lines
171 B
VimL
7 lines
171 B
VimL
function! s:DetectJS()
|
|
if getline(1) =~# '^#!.*/bin/env\s\+node\>'
|
|
setfiletype javascript
|
|
endif
|
|
endfunction
|
|
autocmd BufNewFile,BufRead * call s:DetectJS()
|