summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/indent-o-matic.lua
blob: d64f68c3284a71c0b239b831dd374a62e519c27e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require('indent-o-matic').setup {
  max_lines = 0,
  standard_widths = { 2, 4, 8 },

  filetype_ = { standard_widths = { 2, 4 } },

  filetype_css = { max_lines = 4096 },
  filetype_django = { max_lines = 4096 },
  filetype_javascript = { max_lines = 4096 },
  filetype_json = { max_lines = 4096 },
  filetype_lua = { max_lines = 4096 },
  filetype_scss = { max_lines = 4096 },
  filetype_typescript = { max_lines = 4096 },
  filetype_xml = { max_lines = 4096 },
  filetype_django = { max_lines = 4096 },
  filetype_toml = { max_lines = 4096 },
  filetype_yaml = { max_lines = 4096 },
  filetype_proto = { max_lines = 4096 },
}
remember that computers suck.