Switch to dotbot

This commit is contained in:
2025-01-22 19:33:28 +02:00
parent 9a9edb57ff
commit 484665b291
116 changed files with 100 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
function! s:DetectJS()
if getline(1) =~# '^#!.*/bin/env\s\+node\>'
setfiletype javascript
endif
endfunction
autocmd BufNewFile,BufRead * call s:DetectJS()