Bram Moolenaar | 9fbdbb8 | 2022-09-27 17:30:34 +0100 | [diff] [blame^] | 1 | " Elixir filetype plugin |
2 | " Language: HEEx | ||||
3 | " Maintainer: Mitchell Hanberg <vimNOSPAM@mitchellhanberg.com> | ||||
4 | " Last Change: 2022 Sep 21 | ||||
5 | |||||
6 | if exists("b:did_ftplugin") | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | setlocal shiftwidth=2 softtabstop=2 expandtab | ||||
12 | |||||
13 | setlocal comments=:<%!-- | ||||
14 | setlocal commentstring=<%!--\ %s\ --%> | ||||
15 | |||||
16 | let b:undo_ftplugin = 'set sw< sts< et< com< cms<' |