summaryrefslogtreecommitdiff
path: root/uvim/runtime/indent/cpp.mnv
blob: d8b4b3eb914e78d567f7dc44ef58e99c78fa60ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" MNV indent file
" Language:	C++
" Maintainer:	The MNV Project <https://github.com/Project-Tick/Project-Tick>
" Last Change:	2023 Aug 10
" Former Maintainer:	Bram Moolenaar <Bram@mnv.org>

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

" C++ indenting is built-in, thus this is very simple
setlocal cindent

let b:undo_indent = "setl cin<"