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
- Host: GitHub
- URL: https://github.com/vimichael/floatingtodo.nvim
- Owner: vimichael
- Created: 2025-04-23T13:15:40.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-05-26T08:26:55.000Z (8 months ago)
- Last Synced: 2025-05-26T09:55:27.595Z (8 months ago)
- Language: Lua
- Size: 11.7 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
}
```