An open API service indexing awesome lists of open source software.

https://github.com/vimichael/floatingtodo.nvim

a simple floating todo for neovim
https://github.com/vimichael/floatingtodo.nvim

Last synced: 3 months ago
JSON representation

a simple floating todo for neovim

Awesome Lists containing this project

README

          

# floatingtodo.nvim

a globally accessible buffer for managing tasks.

## Install

```lua
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
}
```