neovim-flake/modules/notes/todo-comments/config.nix

48 lines
1.2 KiB
Nix
Raw Normal View History

2023-03-01 11:26:58 +01:00
{
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.notes.todo-comments;
in {
config = mkIf (cfg.enable) {
vim.startPlugins = [
"todo-comments"
];
vim.maps.normal = {
"<leader>tdq" = {action = ":TodoQuickFix<CR>";};
"<leader>tds" = {action = ":TodoTelescope<CR>";};
"<leader>tdt" = {action = ":TodoTrouble<CR>";};
2023-03-01 11:26:58 +01:00
};
vim.luaConfigRC.todo-comments = ''
require('todo-comments').setup {
highlight = {
before = "", -- "fg" or "bg" or empty
keyword = "bg", -- "fg", "bg", "wide" or empty
after = "fg", -- "fg" or "bg" or empty
pattern = ${cfg.patterns.highlight},
comments_only = true, -- uses treesitter to match keywords in comments only
max_line_len = 400, -- ignore lines longer than this
exclude = {}, -- list of file types to exclude highlighting
},
search = {
command = "${pkgs.ripgrep}/bin/rg",
args = {
"--color=never",
"--no-heading",
"--with-filename",
"--line-number",
"--column",
},
pattern = ${cfg.patterns.search},
},
}
'';
};
}