From 7d0168ff4eb20f0314f4070c546aa411efd79b1b Mon Sep 17 00:00:00 2001 From: tiyn Date: Thu, 27 Jul 2023 20:45:49 +0200 Subject: [PATCH] nvim: added todo-comments.nvim --- .config/nvim/lua/loadplugins.lua | 4 ++ .config/nvim/plugin/todo-comments.lua | 61 +++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 .config/nvim/plugin/todo-comments.lua diff --git a/.config/nvim/lua/loadplugins.lua b/.config/nvim/lua/loadplugins.lua index 5853e17..1b03f77 100644 --- a/.config/nvim/lua/loadplugins.lua +++ b/.config/nvim/lua/loadplugins.lua @@ -76,6 +76,10 @@ return require("packer").startup(function(use) use {'majutsushi/tagbar', cmd = 'TagbarToggle'} + -- todo symbols and highlighting + use {'folke/todo-comments.nvim', + requires = {'nvim-lua/plenary.nvim'}} + -- git wrapper use {'tpope/vim-fugitive'} diff --git a/.config/nvim/plugin/todo-comments.lua b/.config/nvim/plugin/todo-comments.lua new file mode 100644 index 0000000..5244288 --- /dev/null +++ b/.config/nvim/plugin/todo-comments.lua @@ -0,0 +1,61 @@ +-- folke/todo-comments.nvim + +require 'todo-comments'.setup { + signs = true, -- show icons in the signs column + sign_priority = 8, -- sign priority + -- keywords recognized as todo comments + keywords = { + ERRO = { icon = " ", color = "error"}, + TODO = { icon = " ", color = "info" }, + HACK = { icon = " ", color = "warning"}, + WARN = { icon = " ", color = "warning"}, + PERF = { icon = " ", color = "default"}, + NOTE = { icon = " ", color = "hint"}, + TEST = { icon = " ", color = "test"}, + }, + 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 = { "WarningMsg", "DiagnosticWarn", "#FBBF24" }, + info = { "Constant", "#2563EB" }, + hint = { "Comment", "#10B981" }, + default = { "Operator", "#7C3AED" }, + test = { "Function", "#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 + }, +}