Skip to content

Very simple plugin to convert lists into checkboxes in org-mode files

License

Notifications You must be signed in to change notification settings

massix/org-checkbox.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Org Checkbox

Small plugin to convert list into checkboxes and viceversa.

Installation

To install the plugin, simply add the following lines with your favourite plugin manager, the example below is using Lazy:

{
  "massix/org-checkbox.nvim",
  config = function()
    require("orgcheckbox").setup()
  end,
  ft = { "org" },
}

Usage

The plugin automatically registers a buffer-local mapping set by default to <leader>oC which, if triggered on a list item it will toggle it between a checkbox and a standard list item.

If you want to change the default mapping, call setup with an lhs option:

{
  "massix/org-checkbox.nvim",
  config = function()
    require("orgcheckbox").setup({ lhs = "<leader>oT" })
  end,
}

About

Very simple plugin to convert lists into checkboxes in org-mode files

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages