https://github.com/manaspatil0967/nvim-todo
A To-Do client for Neovim.
https://github.com/manaspatil0967/nvim-todo
lua neovim neovim-plugin
Last synced: about 2 months ago
JSON representation
A To-Do client for Neovim.
- Host: GitHub
- URL: https://github.com/manaspatil0967/nvim-todo
- Owner: ManasPatil0967
- License: gpl-3.0
- Created: 2023-12-24T08:51:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-24T18:44:04.000Z (over 2 years ago)
- Last Synced: 2025-01-11T13:47:48.411Z (over 1 year ago)
- Topics: lua, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nvim-todo
An extremely simple To-Do list plugin for Neovim. \
I made this plugin for the sole purpose of understanding UIs for plugins in Neovim as also Lua syntax. \
You can use this plugin directly in Neovim using Packer as
```lua
use {
'ManasPatil0967/nvim-todo',
requires = {
{ 'MunifTanjim/nui.nvim' }
}
}
```
Thereafter simply run the Set_keymaps function to set keymaps as I've coded them. \
```lua
local todo = require('nvim-todo')
todo.Set_keymaps()
```
Run the following command to source, don't run :so \
```lua
luafile %
```
# To Do
1. Add date and time wise reminder feature using rcarriga/nvim-notify plugin.
2. Write a blogpost about it at [My Blog](https://manaspatil.me/blog)