From 4c8944c5eefc9fc8a168ca68ddcf1918d965a993 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 24 Feb 2026 23:14:23 -0500 Subject: [PATCH] refactor(config): change default category from Inbox to Todo --- lua/pending/config.lua | 2 +- spec/store_spec.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/pending/config.lua b/lua/pending/config.lua index d137acb..2e647e4 100644 --- a/lua/pending/config.lua +++ b/lua/pending/config.lua @@ -18,7 +18,7 @@ local M = {} local defaults = { data_path = vim.fn.stdpath('data') .. '/pending/tasks.json', default_view = 'category', - default_category = 'Inbox', + default_category = 'Todo', date_format = '%b %d', date_syntax = 'due', category_order = {}, diff --git a/spec/store_spec.lua b/spec/store_spec.lua index 930fbc0..a2e72aa 100644 --- a/spec/store_spec.lua +++ b/spec/store_spec.lua @@ -92,7 +92,7 @@ describe('store', function() assert.are.equal(1, t1.id) assert.are.equal(2, t2.id) assert.are.equal('pending', t1.status) - assert.are.equal('Inbox', t1.category) + assert.are.equal('Todo', t1.category) end) it('uses provided category', function()