Skip to content

Sheeplet1/todo-view.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

✅ Todo View

todo-view is a lua plugin for Neovim to open the nearest TODO.md in a floating window and can be edited as normal.

image

Note

Not case-insensitive. Will only find TODO.md.

Installation

Install the plugin with your plugin manager.

{
  "Sheeplet1/todo-view.nvim",
  event = "VeryLazy",
  opts = {
    -- your configuration comes here
    -- or leave it empty to use the default settings
    -- refer to the configuration section below
  }
}

Then add to keymaps:

vim.keymap.set("n", "<leader>td", "<cmd>TodoView<CR>", { desc = "Toggle TodoView" })

Configuration

{
    window = {
        height = height,
        width = width,
        border = "rounded",
    },
}

Usage

todo-view finds the closest TODO.md starting from your current working directory.

  • Toggle the TODO window
:TodoView

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published