diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-05 10:47:44 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-05 10:47:44 +0900 |
| commit | 1f755938761193399cad1f740fe58ec2483c2eac (patch) | |
| tree | bcaeb92d27e0306f0952a702589aaeb04d68d308 /ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua | |
| parent | 77e535a277b59db201847a23f1d827f3bba01e7f (diff) | |
modified core/keymaps.lua, modified plugins/markdown.lua, modified plugins/telescope.lua, modified plugins/wiki.lua, created plugins/todo.lua
Diffstat (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua')
| -rw-r--r-- | ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua new file mode 100644 index 0000000..19947ae --- /dev/null +++ b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua @@ -0,0 +1,14 @@ +return { + "vimichael/floatingtodo.nvim", + config = function() + require("floatingtodo").setup({ + target_file = "~/.local/share/vimwiki/todo.md", + border = "single", -- single, rounded, etc. + width = 0.8, -- width of window in % of screen size + height = 0.8, -- height of window in % of screen size + position = "center", -- topleft, topright, bottomleft, bottomright + }) + + vim.keymap.set("n", "<leader>tf", ":Td<CR>", { silent = true, desc = "Todo floating" }) + end, +} |
