neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

netrc.vim (480B)


      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 
      7 if exists("b:did_ftplugin")
      8  finish
      9 endif
     10 let b:did_ftplugin = 1
     11 
     12 let s:cpo_save = &cpo
     13 set cpo&vim
     14 
     15 let b:undo_ftplugin = "setl com< cms< fo<"
     16 
     17 setlocal comments=b:# commentstring=#\ %s formatoptions-=tcroq formatoptions+=l
     18 
     19 let &cpo = s:cpo_save
     20 unlet s:cpo_save