From d776892699515f31a1e226b4dda936bc6c9da216 Mon Sep 17 00:00:00 2001 From: pr0c3550r Date: Sat, 5 Aug 2023 22:39:56 +0200 Subject: [PATCH] Nvim: added highlighting for 'Todo' --- nvim/.config/nvim/lua/plugin/todo-comments.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nvim/.config/nvim/lua/plugin/todo-comments.lua diff --git a/nvim/.config/nvim/lua/plugin/todo-comments.lua b/nvim/.config/nvim/lua/plugin/todo-comments.lua new file mode 100644 index 0000000..7e9149a --- /dev/null +++ b/nvim/.config/nvim/lua/plugin/todo-comments.lua @@ -0,0 +1,11 @@ +return { + { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } + } +}