From 87f61d4d95330768ea4dcec002c12b324d86b581 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Sun, 5 Oct 2025 19:17:34 +0300 Subject: sync --- config/nvim/lua/plugins/todo.lua | 69 ---------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 config/nvim/lua/plugins/todo.lua (limited to 'config/nvim/lua/plugins/todo.lua') diff --git a/config/nvim/lua/plugins/todo.lua b/config/nvim/lua/plugins/todo.lua deleted file mode 100644 index ee672ab..0000000 --- a/config/nvim/lua/plugins/todo.lua +++ /dev/null @@ -1,69 +0,0 @@ -return { - "phrmendes/todotxt.nvim", - cmd = { "TodoTxt", "DoneTxt" }, - opts = { - todotxt = "/home/neonxp/Документы/todo.txt", - donetxt = "/home/neonxp/Документы/done.txt", - }, - -- suggested keybindings - keys = { - { - "tp", - function() require("todotxt").cycle_priority() end, - desc = "todo.txt: cycle priority", - ft = "todotxt", - }, - { - "", - function() require("todotxt").toggle_todo_state() end, - desc = "todo.txt: toggle task state", - ft = "todotxt", - }, - { - "tn", - function() require("todotxt").capture_todo() end, - desc = "New entry", - }, - { - "tt", - function() require("todotxt").toggle_todotxt() end, - desc = "Open", - }, - { - "tr", - function() require("todotxt").move_done_tasks() end, - desc = "Move to done.txt", - ft = "todotxt", - }, - { - "tss", - function() require("todotxt").sort_tasks() end, - desc = "Sort", - ft = "todotxt", - }, - { - "tsd", - function() require("todotxt").sort_tasks_by_due_date() end, - desc = "Sort by due:date", - ft = "todotxt", - }, - { - "tsP", - function() require("todotxt").sort_tasks_by_priority() end, - desc = "Sort by (priority)", - ft = "todotxt", - }, - { - "tsc", - function() require("todotxt").sort_tasks_by_context() end, - desc = "Sort by @context", - ft = "todotxt", - }, - { - "tsp", - function() require("todotxt").sort_tasks_by_project() end, - desc = "Sort by +project", - ft = "todotxt", - }, - }, -} -- cgit v1.2.3