diff --git a/.config/nvim/lua/plugins/syntax_highlighting.lua b/.config/nvim/lua/plugins/syntax_highlighting.lua index f16b556..12df498 100644 --- a/.config/nvim/lua/plugins/syntax_highlighting.lua +++ b/.config/nvim/lua/plugins/syntax_highlighting.lua @@ -12,7 +12,7 @@ return { "query", "markdown", "markdown_inline", - "bash", + "bash", "json", "jsonc", "python", @@ -53,4 +53,11 @@ return { }) end, }, + { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = {}, + }, + vim.keymap.set("n", "ct", ":TodoQuickFix", { desc = "Show TODO" }), + vim.keymap.set("n", "fc", ":TodoTelescope", { desc = "Show TODO" }), }