arduino.vim (356B)
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 7 " Only load this indent file when no other was loaded. 8 if exists("b:did_indent") 9 finish 10 endif 11 let b:did_indent = 1 12 13 " Use C indenting. 14 setlocal cindent 15 16 let b:undo_indent = "setl cin<"