mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
29 lines
609 B
Nix
29 lines
609 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.notes.todo-comments;
|
||
|
in {
|
||
|
options.vim.notes.todo-comments = {
|
||
|
enable = mkEnableOption "todo-comments";
|
||
|
|
||
|
patterns = {
|
||
|
highlight = mkOption {
|
||
|
type = types.str;
|
||
|
default = ''[[.*<(KEYWORDS)(\([^\)]*\))?:]]'';
|
||
|
description = "vim regex pattern used for highlighting comments";
|
||
|
};
|
||
|
|
||
|
search = mkOption {
|
||
|
type = types.str;
|
||
|
default = ''[[\b(KEYWORDS)(\([^\)]*\))?:]]'';
|
||
|
description = "ripgrep regex pattern used for searching comments";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|