blob: d25aafe1350a8d7488c8393d1065d40d483691c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
" Vim indent file
" Language: m17n database
" Maintainer: David Mandelberg <david@mandelberg.org>
" Last Change: 2025 Feb 21
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
setlocal autoindent
setlocal nosmartindent
let b:undo_indent = "setlocal autoindent< smartindent<"
|