mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 17:30:04 +01:00
8 lines
217 B
Nix
8 lines
217 B
Nix
|
|
{lib, ...}: let
|
||
|
|
inherit (lib.options) mkEnableOption;
|
||
|
|
in {
|
||
|
|
options.vim.utility.sleuth.enable = mkEnableOption ''
|
||
|
|
automatically adjusting options such as `shiftwidth` or `expandtab`, using `vim-sleuth`
|
||
|
|
'';
|
||
|
|
}
|