{lib, ...}: with lib; with builtins; { options.vim.notes.todo-comments = { enable = mkEnableOption "Enable 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"; }; }; mappings = { quickFix = mkMappingOption "Open Todo-s in a quickfix list" "tdq"; telescope = mkMappingOption "Open Todo-s in telescope" "tds"; trouble = mkMappingOption "Open Todo-s in Trouble" "tdt"; }; }; }