13 lines
374 B
Lua
13 lines
374 B
Lua
require('indent-o-matic').setup {
|
|
-- The values indicated here are the defaults
|
|
|
|
-- Number of lines without indentation before giving up (use -1 for infinite)
|
|
max_lines = 1024,
|
|
|
|
-- Space indentations that should be detected
|
|
standard_widths = { 2, 4, 8 },
|
|
|
|
-- Skip multi-line comments and strings (more accurate detection but less performant)
|
|
skip_multiline = true,
|
|
}
|