blob: 984dab6c5fd4737f698c04830fb145d995aeb91e [file] [log] [blame]
Colin Caine4b3fab12024-04-18 23:53:02 +02001" Vim ftplugin file
2" Language: OpenWrt Unified Configuration Interface
3" Maintainer: Colin Caine <complaints@cmcaine.co.uk>
4" Upstream: https://github.com/cmcaine/vim-uci
5" Last Change: 2024 Apr 17
6"
7" For more information on uci, see https://openwrt.org/docs/guide-user/base-system/uci
8
9if exists("b:did_ftplugin")
10 finish
11endif
12let b:did_ftplugin = 1
13
14" UCI files are indented with tabs.
15setl noexpandtab
16setl shiftwidth=0
17setl softtabstop=0
18
19setl commentstring=#\ %s
20
21let b:undo_ftplugin = "setlocal et< cms< sts< sw<"