netrc.vim 480 B

123456789101112131415161718192021
  1. " Vim filetype plugin file
  2. " Language: netrc(5) configuration file
  3. " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
  4. " Latest Revision: 2008-07-09
  5. " Last Change: 2023 Feb 27 by Keith Smiley
  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=b:# commentstring=#\ %s formatoptions-=tcroq formatoptions+=l
  14. let &cpo = s:cpo_save
  15. unlet s:cpo_save