blob: a86d414d60d0995d76ab0024db6f6958b9bde266 (
plain)
1
2
3
4
5
6
7
|
{lib, ...}: let
inherit (lib.options) mkEnableOption;
in {
options.vim.utility.sleuth.enable = mkEnableOption ''
automatically adjusting options such as `shiftwidth` or `expandtab`, using `vim-sleuth`
'';
}
|