fish.vim 483 B

12345678910111213141516171819
  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. if exists("b:did_ftplugin")
  8. finish
  9. endif
  10. let b:did_ftplugin = 1
  11. setlocal iskeyword=@,48-57,_,192-255,-,.
  12. setlocal comments=:#
  13. setlocal commentstring=#%s
  14. setlocal formatoptions+=crjq
  15. let b:undo_ftplugin = "setl cms< com< fo< isk<"