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) |
Riley Bruins | 0a08306 | 2024-06-03 20:40:45 +0200 | [diff] [blame] | 7 | " 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring') |
Bram Moolenaar | 938ae28 | 2023-02-20 20:44:55 +0000 | [diff] [blame] | 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=:# |
Riley Bruins | 0a08306 | 2024-06-03 20:40:45 +0200 | [diff] [blame] | 16 | setlocal commentstring=#\ %s |
Bram Moolenaar | 938ae28 | 2023-02-20 20:44:55 +0000 | [diff] [blame] | 17 | setlocal formatoptions+=crjq |
dkearns | f937ab3 | 2023-08-29 05:32:27 +1000 | [diff] [blame] | 18 | |
| 19 | let b:undo_ftplugin = "setl cms< com< fo< isk<" |