Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 488 Bytes

File metadata and controls

20 lines (17 loc) · 488 Bytes

floatingtodo.nvim

a globally accessible buffer for managing tasks.

Install

return {
  "vimichael/floatingtodo.nvim",
  config = function()
    require("floatingtodo").setup({
      target_file = "~/notes/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
    })
  end
}