arduino.vim 356 B

1234567891011121314151617
  1. " Vim indent file
  2. " Language: Arduino
  3. " Maintainer: The Vim Project <https://github.com/vim/vim>
  4. " Ken Takata <https://github.com/k-takata>
  5. " Last Change: 2024 Apr 03
  6. " Only load this indent file when no other was loaded.
  7. if exists("b:did_indent")
  8. finish
  9. endif
  10. let b:did_indent = 1
  11. " Use C indenting.
  12. setlocal cindent
  13. let b:undo_indent = "setl cin<"