From 1f755938761193399cad1f740fe58ec2483c2eac Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Thu, 5 Jun 2025 10:47:44 +0900 Subject: modified core/keymaps.lua, modified plugins/markdown.lua, modified plugins/telescope.lua, modified plugins/wiki.lua, created plugins/todo.lua --- ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/todo.lua') 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", "tf", ":Td", { silent = true, desc = "Todo floating" }) + end, +} -- cgit v1.2.3