Refactoring

This commit is contained in:
Thomas Naderer
2024-12-25 10:36:21 +01:00
parent 91dbeda101
commit 2dcd9c7e67
4 changed files with 3 additions and 35 deletions

View File

@@ -1,21 +0,0 @@
require("todo-comments").setup {
signs = true, -- Show icons in the signs column
keywords = {
TODO = { icon = "", color = "info" },
FIXME = { icon = "", color = "error" },
HACK = { icon = "", color = "warning" },
WARN = { icon = "", color = "warning" },
NOTE = { icon = "", color = "hint" },
},
highlight = {
before = "", -- Don't highlight before the keyword
keyword = "wide", -- Highlight the keyword itself
after = "fg", -- Highlight after the keyword
},
search = {
command = "rg", -- Use ripgrep for searching
args = {
"--color=never", "--no-heading", "--with-filename", "--line-number", "--column",
},
},
}