From f5532193c8cc05e665f74f809b2c70cf16b5150a Mon Sep 17 00:00:00 2001 From: pika Date: Wed, 2 Apr 2025 22:10:58 +0200 Subject: [PATCH] addet todo comment colors --- lua/pika/plugins/qol.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lua/pika/plugins/qol.lua b/lua/pika/plugins/qol.lua index c012d60..2e39595 100644 --- a/lua/pika/plugins/qol.lua +++ b/lua/pika/plugins/qol.lua @@ -138,6 +138,23 @@ return { ), }, + -- ─< INFO: Those comments are really great! >────────────────────────────────────────── + -- ─────────────────────< NOTE: And they can be pretty satisfying... >───────────────────── + -- ╭──────────────────────────────────────╮ + -- │ WARN: Also they can change in color! │ + -- ╰──────────────────────────────────────╯ + { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = { + keywords = { + NOTE = { icon = " ", color = "hint" }, + INFO = { icon = " ", color = "info" }, + WARNING = { icon = " ", color = "warning", alt = { "WARN" } }, + }, + }, + }, + -- ╭───────────╮ -- │ colorizer │ -- ╰───────────╯