neovim

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

ipkg.vim (545B)


      1 " Vim ftplugin file
      2 " Language:    Ipkg
      3 " Maintainer:  Idris Hackers (https://github.com/edwinb/idris2-vim), Serhii Khoma <srghma@gmail.com>
      4 " Last Change: 2024 Nov 05
      5 " Author:      ShinKage
      6 " License:     Vim (see :h license)
      7 " Repository:  https://github.com/ShinKage/idris2-nvim
      8 
      9 if exists("b:did_ftplugin")
     10  finish
     11 endif
     12 
     13 setlocal comments=:--
     14 setlocal commentstring=--\ %s
     15 setlocal wildignore+=*.ibc
     16 
     17 let b:undo_ftplugin = "setlocal shiftwidth< tabstop< expandtab< comments< commentstring< iskeyword< wildignore<"
     18 
     19 let b:did_ftplugin = 1