Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/max397574/neorg-kanban
https://github.com/max397574/neorg-kanban
neovim-plugin
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/max397574/neorg-kanban
- Owner: max397574
- Created: 2022-04-30T16:31:00.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-30T20:21:30.000Z (almost 2 years ago)
- Last Synced: 2024-08-04T05:01:49.500Z (3 months ago)
- Topics: neovim-plugin
- Homepage:
- Size: 9.77 KB
- Stars: 35
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-neorg - Neorg Kanban - A neorg module that will allow you to display your gtd tasks in kanban-like floating windows. (Neorg Modules)
README
# Neorg Kanban
## This currently doesn't work since the gtd module is being reworked
Neorg Kanban is a neorg module that will allow you to display your gtd tasks in kanban-like floating windows.
![kanban](https://user-images.githubusercontent.com/81827001/166137546-a9db04fb-23b0-463c-bfb9-c0ad376aaf82.png)
## 📦 Setup
You can use load this module by putting
```lua
["external.kanban"] = {},
```
into your setup.## 🔧 Configuration
You can configure which types of tasks to display with the `task_states` field in the config.The default values look like this:
```lua
{
task_states = {
"undone",
"done",
"pending",
"cancelled",
"uncertain",
"urgent",
"recurring",
"on_hold",
}
}
```## âš™ Usage
This module provides three commands:
- `Neorg kanban open`
- `Neorg kanban close`
- `Neorg kanban toggle`They allow you to open, close and toggle the kanban board.