mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
29 lines
835 B
Nix
29 lines
835 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) types;
|
|
inherit (lib.nixvim) defaultNullOpts;
|
|
in
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "indent-o-matic";
|
|
description = "Dumb automatic fast indentation detection for Neovim.";
|
|
maintainers = [ lib.maintainers.alisonjenkins ];
|
|
settingsOptions = {
|
|
max_lines = defaultNullOpts.mkInt 2048 "Number of lines without indentation before giving up (use -1 for infinite)";
|
|
skip_multiline = defaultNullOpts.mkBool false "Skip multi-line comments and strings (more accurate detection but less performant)";
|
|
standard_widths = defaultNullOpts.mkListOf types.ints.unsigned [
|
|
2
|
|
4
|
|
8
|
|
] "Space indentations that should be detected";
|
|
};
|
|
|
|
settingsExample = {
|
|
max_lines = 2048;
|
|
skip_multiline = false;
|
|
standard_widths = [
|
|
2
|
|
4
|
|
8
|
|
];
|
|
};
|
|
}
|