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

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

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