summaryrefslogtreecommitdiffstats
path: root/modules/plugins/utility/guess-indent-nvim/guess-indent-nvim.nix
blob: b5eea7b80b6b589f8f8fbcf986a277b7d1821433 (plain)
1
2
3
4
5
6
7
8
9
10
{lib, ...}: let
  inherit (lib.options) mkEnableOption;
  inherit (lib.nvim.types) mkPluginSetupOption;
in {
  options.vim.utility.guess-indent-nvim = {
    enable = mkEnableOption "Automatic indentation style detection [guess-indent.nvim]";

    setupOpts = mkPluginSetupOption "guess-indent.nvim" {};
  };
}