ipkg.vim 545 B

1234567891011121314151617181920
  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. if exists("b:did_ftplugin")
  9. finish
  10. endif
  11. setlocal comments=:--
  12. setlocal commentstring=--\ %s
  13. setlocal wildignore+=*.ibc
  14. let b:undo_ftplugin = "setlocal shiftwidth< tabstop< expandtab< comments< commentstring< iskeyword< wildignore<"
  15. let b:did_ftplugin = 1