Skip to content

chkg2a/todo-obsidian.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

todo-obsidian.nvim


A neovim plugin for accessing todo lists for global space, and a project specific todo list.

Demo

asdf.mp4

Installation

lazy.nvim

	{
		"chkg2a/todo-obsidian",
		lazy = false, -- load on startup
		priority = 100, -- load early if needed
		opts = {
			file_paths = {
				main_todo = vim.fn.expand("~/.local/share/obsidian_ChK/journaling/todos/TODO.md"),
			},
		},
		config = function(_,opts)
			require("todo-obsidian").setup(opts)
		end,
	}

Usage

Start using the Todo List by Typing the following command

:OpenTodo

If you want to set a keybind. Use this command

vim.keymap.set("n", "<A-t>", "<cmd> OpenTodo <CR>", { desc = "Open Project Todo"})

TODO

  • Project Specific TODO

About

Todo obsidian is a neovim plugin to integrate todo list with the obsidian.nvim plugin.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages