vim-autoformat/ftplugin/javascript.vim

11 lines
272 B
VimL
Raw Normal View History

2012-10-09 19:04:23 -04:00
let s:bundleDir = fnamemodify(expand("<sfile>"), ":h:h:h")
let s:prgpath = s:bundleDir."/js-beautify/python/js-beautify"
let s:arguments = "-i"
if executable(s:prgpath)
let &formatprg=s:prgpath." ".s:arguments
endif
2012-10-09 19:04:23 -04:00
set expandtab
set tabstop = 4
set shiftwidth = 4