summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/indent-o-matic.lua
blob: 517c3d80f271ab4f3f58c68394f0aa47cc56f22f (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_jsonnet = { max_lines = 4096 },
}
remember that computers suck.