summaryrefslogtreecommitdiffstats
path: root/runtime/indent/arduino.vim
blob: 88717ac00ddc799df3d05f23bdcf61ae70091346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" Vim indent file
" Language:	Arduino
" Maintainer:	The Vim Project <https://github.com/vim/vim>
"		Ken Takata <https://github.com/k-takata>
" Last Change:	2024 Apr 03

" Only load this indent file when no other was loaded.
if exists("b:did_indent")
  finish
endif
let b:did_indent = 1

" Use C indenting.
setlocal cindent

let b:undo_indent = "setl cin<"