Adding todo-comment

This commit is contained in:
Zoe Roux
2022-03-10 15:31:26 +01:00
parent 83274014ad
commit 69888af09c
2 changed files with 9 additions and 0 deletions
+1
View File
@@ -55,6 +55,7 @@ return packer.startup(function(use)
'stevearc/dressing.nvim',
}
use { "folke/trouble.nvim", requires = "kyazdani42/nvim-web-devicons" }
use { "folke/todo-comments.nvim", requires = "nvim-lua/plenary.nvim" }
use "folke/which-key.nvim"
use "akinsho/toggleterm.nvim"
@@ -17,3 +17,11 @@ wk.register({
}, {
prefix = "<leader>",
})
local tc_ok, tc = pcall(require, "todo-comments")
if not tc_ok then
return
end
tc.setup({ })