fish.vim 567 B

1234567891011121314151617181920
  1. " Vim filetype plugin file
  2. " Language: fish
  3. " Maintainer: Nicholas Boyle (github.com/nickeb96)
  4. " Repository: https://github.com/nickeb96/fish.vim
  5. " Last Change: February 1, 2023
  6. " 2023 Aug 28 by Vim Project (undo_ftplugin)
  7. " 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  8. if exists("b:did_ftplugin")
  9. finish
  10. endif
  11. let b:did_ftplugin = 1
  12. setlocal iskeyword=@,48-57,_,192-255,-,.
  13. setlocal comments=:#
  14. setlocal commentstring=#\ %s
  15. setlocal formatoptions+=crjq
  16. let b:undo_ftplugin = "setl cms< com< fo< isk<"