indent.vim 566 B

1234567891011121314151617181920212223
  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. " 2024-06-02 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  7. if exists("b:did_ftplugin")
  8. finish
  9. endif
  10. let b:did_ftplugin = 1
  11. let s:cpo_save = &cpo
  12. set cpo&vim
  13. let b:undo_ftplugin = "setl com< cms< fo<"
  14. setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*\ %s\ */
  15. setlocal formatoptions-=t formatoptions+=croql
  16. let &cpo = s:cpo_save
  17. unlet s:cpo_save