Bram Moolenaar | 938ae28 | 2023-02-20 20:44:55 +0000 | [diff] [blame] | 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 |
dkearns | f937ab3 | 2023-08-29 05:32:27 +1000 | [diff] [blame] | 6 | " 2023 Aug 28 by Vim Project (undo_ftplugin) |
Bram Moolenaar | 938ae28 | 2023-02-20 20:44:55 +0000 | [diff] [blame] | 7 | |
| 8 | if exists("b:did_ftplugin") |
| 9 | finish |
| 10 | endif |
| 11 | let b:did_ftplugin = 1 |
| 12 | |
| 13 | setlocal iskeyword=@,48-57,_,192-255,-,. |
| 14 | setlocal comments=:# |
| 15 | setlocal commentstring=#%s |
| 16 | setlocal formatoptions+=crjq |
dkearns | f937ab3 | 2023-08-29 05:32:27 +1000 | [diff] [blame] | 17 | |
| 18 | let b:undo_ftplugin = "setl cms< com< fo< isk<" |