nix/home/config/nvim/module/plugin/Indent.nix

12 lines
209 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
-- Auto-detect indentation type.
require("indent-o-matic").setup {
max_lines = 1024,
skip_multiline = true,
standard_widths = { 2, 4, 8 },
}
'';
2024-04-06 03:03:58 +03:00
}