indent.vim 487 B

12345678910111213141516171819202122
  1. " Vim filetype plugin file
  2. " Language: indent(1) configuration file
  3. " Maintainer: Doug Kearns <dougkearns@gmail.com>
  4. " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
  5. " Latest Revision: 2008-07-09
  6. if exists("b:did_ftplugin")
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. let s:cpo_save = &cpo
  11. set cpo&vim
  12. let b:undo_ftplugin = "setl com< cms< fo<"
  13. setlocal comments=s1:/*,mb:*,ex:*/ commentstring&
  14. setlocal formatoptions-=t formatoptions+=croql
  15. let &cpo = s:cpo_save
  16. unlet s:cpo_save