hostconf.vim 383 B

12345678910111213141516171819
  1. " Vim filetype plugin file
  2. " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
  3. " Latest Revision: 2007-12-04
  4. if exists("b:did_ftplugin")
  5. finish
  6. endif
  7. let b:did_ftplugin = 1
  8. let s:cpo_save = &cpo
  9. set cpo&vim
  10. let b:undo_ftplugin = "setl com< cms< fo<"
  11. setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
  12. let &cpo = s:cpo_save
  13. unlet s:cpo_save