Skip to content

Commit

Permalink
feat: Add todo-comments plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
misumisumi committed Oct 18, 2023
1 parent fddb287 commit 52edf56
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
68 changes: 68 additions & 0 deletions lua/user/configs/tool/todo-comments.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
local icons = {
ui = require("modules.utils.icons").get("ui", true),
diagnostics = require("modules.utils.icons").get("diagnostics", true),
}
return {
signs = true, -- show icons in the signs column
sign_priority = 8, -- sign priority
-- keywords recognized as todo comments
keywords = {
FIX = {
icon = icons.ui.Bug, -- icon used for the sign, and in search results
color = "error", -- can be a hex color, or a named color (see below)
alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
-- signs = false, -- configure signs for some keywords individually
},
TODO = { icon = icons.ui.Check, color = "info" },
HACK = { icon = icons.ui.Fire, color = "warning" },
WARN = { icon = icons.diagnostics.Warning, color = "warning", alt = { "WARNING", "XXX" } },
PERF = { icon = icons.ui.Perf, alt = { "OPTIM", "PERFORMANCE", "OPTIMIZE" } },
NOTE = { icon = icons.ui.Note, color = "hint", alt = { "INFO" } },
TEST = { icon = icons.diagnostics.Hint, color = "test", alt = { "TESTING", "PASSED", "FAILED" } },
},
gui_style = {
fg = "NONE", -- The gui style to use for the fg highlight group.
bg = "BOLD", -- The gui style to use for the bg highlight group.
},
merge_keywords = true, -- when true, custom keywords will be merged with the defaults
-- highlighting of the line containing the todo comment
-- * before: highlights before the keyword (typically comment characters)
-- * keyword: highlights of the keyword
-- * after: highlights after the keyword (todo text)
highlight = {
multiline = true, -- enable multine todo comments
multiline_pattern = "^.", -- lua pattern to match the next multiline from the start of the matched keyword
multiline_context = 10, -- extra lines that will be re-evaluated when changing a line
before = "", -- "fg" or "bg" or empty
keyword = "wide", -- "fg", "bg", "wide", "wide_bg", "wide_fg" or empty. (wide and wide_bg is the same as bg, but will also highlight surrounding characters, wide_fg acts accordingly but with fg)
after = "fg", -- "fg" or "bg" or empty
pattern = [[.*<(KEYWORDS)\s*:]], -- pattern or table of patterns, used for highlighting (vim regex)
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
},
-- list of named colors where we try to extract the guifg from the
-- list of highlight groups or use the hex color if hl not found as a fallback
colors = {
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
warning = { "DiagnosticWarn", "WarningMsg", "#FBBF24" },
info = { "DiagnosticInfo", "#2563EB" },
hint = { "DiagnosticHint", "#10B981" },
default = { "Identifier", "#7C3AED" },
test = { "Identifier", "#FF00FF" },
},
search = {
command = "rg",
args = {
"--color=never",
"--no-heading",
"--with-filename",
"--line-number",
"--column",
},
-- regex that will be used to match keywords.
-- don't replace the (KEYWORDS) placeholder
pattern = [[\b(KEYWORDS):]], -- ripgrep regex
-- pattern = [[\b(KEYWORDS)\b]], -- match without the extra colon. You'll likely get false positives
},
}
2 changes: 2 additions & 0 deletions lua/user/keymap/tool.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ return {
["i|<C-Space>"] = map_cmd("<Plug>(skkeleton-toggle)"):with_silent(),
["c|<C-Space>"] = map_cmd("<Plug>(skkeleton-toggle)"):with_silent(),
-- Plugin: telescope
["n|<leader>tt"] = map_cr("TodoQuickfix"):with_noremap():with_silent():with_desc("tool: Toggle Todos in project"),
["n|<leader>ft"] = map_cr("TodoTelescope"):with_noremap():with_silent():with_desc("find: Todos in project"),
["n|<leader><S-cr>"] = map_callback(function()
_command_panel()
end)
Expand Down
6 changes: 6 additions & 0 deletions lua/user/plugins/tool.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ tool["vim-skk/skkeleton"] = {
event = "VeryLazy",
config = require("user.configs.tool.skkeleton"),
}
tool["folke/todo-comments.nvim"] = {
lazy = true,
dependencies = { "nvim-lua/plenary.nvim" },
event = "VeryLazy",
config = require("user.configs.tool.todo-comments"),
}
tool["voldikss/vim-translator"] = {
lazy = true,
cmd = {
Expand Down

0 comments on commit 52edf56

Please sign in to comment.