diff options
author | Matthew Lemon <y@yulqen.org> | 2023-04-08 17:49:55 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-04-08 17:49:55 +0100 |
commit | 11c8477183da0e16bf150e9fac8da38826e2340c (patch) | |
tree | 491aeaac7f8bad23fce3708b65d770c172398294 /nvim/after/plugin/todo-txt.lua | |
parent | 9f953b0eea5f3610cc78b7470d3030940939132d (diff) |
Adds todo.txt support to neovim
I need to add keyboard shortcuts, but you get a buffer window.
Diffstat (limited to 'nvim/after/plugin/todo-txt.lua')
-rw-r--r-- | nvim/after/plugin/todo-txt.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nvim/after/plugin/todo-txt.lua b/nvim/after/plugin/todo-txt.lua new file mode 100644 index 0000000..917805d --- /dev/null +++ b/nvim/after/plugin/todo-txt.lua @@ -0,0 +1,7 @@ +require('todotxt-nvim').setup({ + todo_file = "/home/lemon/Documents/Notes/todo/todo.txt", + sidebar = { + width = 60, + position = "right", -- default: "right" + }, +}) |