mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.notes.todo-comments;
|
||
|
in {
|
||
|
config = mkIf (cfg.enable) {
|
||
|
vim.startPlugins = [
|
||
|
"todo-comments"
|
||
|
];
|
||
|
|
||
|
vim.nnoremap = {
|
||
|
"<leader>tdq" = ":TodoQuickFix<CR>";
|
||
|
"<leader>tds" = ":TodoTelescope<CR>";
|
||
|
"<leader>tdt" = ":TodoTrouble<CR>";
|
||
|
};
|
||
|
|
||
|
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},
|
||
|
},
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|