diff options
| author | José Juan Loeza Sierra <jj@xz6ze.com> | 2025-11-08 15:34:03 -0800 |
|---|---|---|
| committer | José Juan Loeza Sierra <jj@xz6ze.com> | 2025-11-08 15:34:03 -0800 |
| commit | c000e16d7d200634da6b102abbe2a30ea55aba8f (patch) | |
| tree | 9446c60719b717cb0d3e804caba57156794ad8ec /dot-config/nvim/plugin/todo.lua | |
| parent | 668a8a6d5f38fe161d32b7ee1d04976fc0408723 (diff) | |
add todo comments plugin
Diffstat (limited to 'dot-config/nvim/plugin/todo.lua')
| -rw-r--r-- | dot-config/nvim/plugin/todo.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dot-config/nvim/plugin/todo.lua b/dot-config/nvim/plugin/todo.lua new file mode 100644 index 0000000..2d9e0dd --- /dev/null +++ b/dot-config/nvim/plugin/todo.lua @@ -0,0 +1,8 @@ +vim.pack.add({ + "https://github.com/folke/todo-comments.nvim", + "https://github.com/nvim-lua/plenary.nvim", -- dependency +}) + +require("todo-comments").setup() + +vim.keymap.set("n", "<leader>ft", require("todo-comments.fzf").todo) |
