mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
28 lines
871 B
Nix
28 lines
871 B
Nix
{lib, ...}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.notes.todo-comments = {
|
|
enable = mkEnableOption "todo-comments: highlight and search for todo comments like TODO, HACK, BUG in your code base";
|
|
|
|
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";
|
|
};
|
|
};
|
|
|
|
mappings = {
|
|
quickFix = mkMappingOption "Open Todo-s in a quickfix list" "<leader>tdq";
|
|
telescope = mkMappingOption "Open Todo-s in telescope" "<leader>tds";
|
|
trouble = mkMappingOption "Open Todo-s in Trouble" "<leader>tdt";
|
|
};
|
|
};
|
|
}
|