c.vim (391B)
1 " Vim indent file 2 " Language: C 3 " Maintainer: The Vim Project <https://github.com/vim/vim> 4 " Last Change: 2023 Aug 10 5 " Former Maintainer: Bram Moolenaar <Bram@vim.org> 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 " C indenting is built-in, thus this is very simple 14 setlocal cindent 15 16 let b:undo_indent = "setl cin<"