blob: 55d7ea8dd957393095682d47b53c78d06eff74e7 [file] [log] [blame]
Bram Moolenaar938ae282023-02-20 20:44:55 +00001" 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
dkearnsf937ab32023-08-29 05:32:27 +10006" 2023 Aug 28 by Vim Project (undo_ftplugin)
Riley Bruins0a083062024-06-03 20:40:45 +02007" 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
Bram Moolenaar938ae282023-02-20 20:44:55 +00008
9if exists("b:did_ftplugin")
10 finish
11endif
12let b:did_ftplugin = 1
13
14setlocal iskeyword=@,48-57,_,192-255,-,.
15setlocal comments=:#
Riley Bruins0a083062024-06-03 20:40:45 +020016setlocal commentstring=#\ %s
Bram Moolenaar938ae282023-02-20 20:44:55 +000017setlocal formatoptions+=crjq
dkearnsf937ab32023-08-29 05:32:27 +100018
19let b:undo_ftplugin = "setl cms< com< fo< isk<"