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