aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/after/plugin/todo-txt.lua
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-04-08 17:49:55 +0100
committerMatthew Lemon <y@yulqen.org>2023-04-08 17:49:55 +0100
commit11c8477183da0e16bf150e9fac8da38826e2340c (patch)
tree491aeaac7f8bad23fce3708b65d770c172398294 /nvim/after/plugin/todo-txt.lua
parent9f953b0eea5f3610cc78b7470d3030940939132d (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.lua7
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"
+ },
+})