uci.vim 524 B

12345678910111213141516171819202122
  1. " 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. if exists("b:did_ftplugin")
  9. finish
  10. endif
  11. let b:did_ftplugin = 1
  12. " UCI files are indented with tabs.
  13. setl noexpandtab
  14. setl shiftwidth=0
  15. setl softtabstop=0
  16. setl commentstring=#\ %s
  17. let b:undo_ftplugin = "setlocal et< cms< sts< sw<"