blob: 70ae26ec177c8a820d05353d8496e808a1be7b16 [file] [log] [blame]
Serhii Khoma5ca8f222024-11-12 21:49:42 +01001" Vim ftplugin file
2" Language: Ipkg
3" Maintainer: Idris Hackers (https://github.com/edwinb/idris2-vim), Serhii Khoma <srghma@gmail.com>
4" Last Change: 2024 Nov 05
5" Author: ShinKage
6" License: Vim (see :h license)
7" Repository: https://github.com/ShinKage/idris2-nvim
8
9if exists("b:did_ftplugin")
10 finish
11endif
12
13setlocal comments=:--
14setlocal commentstring=--\ %s
15setlocal wildignore+=*.ibc
16
17let b:undo_ftplugin = "setlocal shiftwidth< tabstop< expandtab< comments< commentstring< iskeyword< wildignore<"
18
19let b:did_ftplugin = 1