From 392b983a7dea0eb55fb0c4d3dc6e1749a83022f9 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Wed, 17 May 2023 08:16:28 +0200 Subject: [PATCH] add todo highlighting --- lua/custom/plugins/todos.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lua/custom/plugins/todos.lua diff --git a/lua/custom/plugins/todos.lua b/lua/custom/plugins/todos.lua new file mode 100644 index 0000000..cb032ec --- /dev/null +++ b/lua/custom/plugins/todos.lua @@ -0,0 +1,11 @@ +return { + 'folke/todo-comments.nvim', + requires = 'nvim-lua/plenary.nvim', + config = function() + require('todo-comments').setup { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } + end, +}