diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index 0df77bd..c7e9eed 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -65,6 +65,15 @@ require('lazy').setup({ org_startup_indented = true, org_deadline_warning_days = 0, org_agenda_custom_commands = { + p = { + description = "Personal", + types = { + { + type = 'agenda', + org_agenda_tag_filter_preset = 'personal' + } + } + }, w = { description = "Work", types = { @@ -74,12 +83,21 @@ require('lazy').setup({ } } }, - p = { - description = "Personal", + m = { + description = "Milestones", types = { { 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' } } },