more variations of org filters for different areas of my life

This commit is contained in:
mannders00
2026-06-30 18:42:17 -05:00
parent 959d94f5d6
commit 62108214cc

View File

@@ -65,6 +65,15 @@ require('lazy').setup({
org_startup_indented = true, org_startup_indented = true,
org_deadline_warning_days = 0, org_deadline_warning_days = 0,
org_agenda_custom_commands = { org_agenda_custom_commands = {
p = {
description = "Personal",
types = {
{
type = 'agenda',
org_agenda_tag_filter_preset = 'personal'
}
}
},
w = { w = {
description = "Work", description = "Work",
types = { types = {
@@ -74,12 +83,21 @@ require('lazy').setup({
} }
} }
}, },
p = { m = {
description = "Personal", description = "Milestones",
types = { types = {
{ {
type = 'agenda', type = 'agenda',
org_agenda_tag_filter_preset = 'personal' org_agenda_tag_filter_preset = 'milestone'
}
}
},
s = {
description = "Social",
types = {
{
type = 'agenda',
org_agenda_tag_filter_preset = 'social'
} }
} }
}, },