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