aboutsummaryrefslogtreecommitdiffstats
path: root/oni-org
Commit message (Collapse)AuthorAgeFilesLines
...
* [oni-org] Fix ‘oni-org-pomodoro-times’ for when no ↵Gravatar Tom Willemse2023-03-201-9/+9
| | | | logbook exists
* [oni-org] Add new commands to manage my GTD inbox and ↵Gravatar Tom Willemse2023-03-141-1/+101
| | | | | | | | | | | | | | | | | | | | | | tickler These function help me make sure that I'm properly going through both files. The command ‘oni-org-run-through-inbox’ will first dump any items in the tickler file that are relevant for today and then it goes through each item in my inbox and asks me to take an action on them. This helps me both go through my inbox more easily, but also helps me keep track of the items in my tickler file, which has been something I keep forgetting to look at. The ‘oni-org-dump-tickler’ command should be idempotent, so calling it multiple times per day shouldn't mess with the different dates in the file. If it discovers that the current day isn't the same as today it keeps going through the tickler file, dumping any tasks it finds into the inbox, until it finds the right day number. It's not aware of any of the months, so it'll happily move to the next month if your tickler file is in the wrong state. Also if your tickler file hasn't been updated in more than a month it also doesn't understand that it needs to keep going and will keep presenting you with old tasks.
* feat(oni-org): Use the LCh color space to generate colorsGravatar Tom Willemse2023-02-241-3/+6
| | | | | | | | | | | | Automatically generated colors for todo keywords and tags using an MD5 hash will produce a completely random color, frequently not fitting well at all within my chosen color theme. Using the LCh color space and keeping the L(uminance) and C(hroma) constant will produce colors that fit together much metter, and the values have been picked to work well with ‘yoshi-theme’. This change was inspired by “Arbitrary Beautiful Colors”[1]. [1]: https://khanlou.com/2023/02/arbitrary-beautiful-colors/
* [oni-org] Add planned pomodoro noteGravatar Tom Willemse2023-01-241-4/+10
|
* [oni-org] Add some Pomodoro[1] helper functionsGravatar Tom Willemse2022-12-131-1/+53
| | | | | | | | | | | | | | | | | | | - ‘oni-org-increment-property’: A generic command that increments a numeric org property - ‘oni-org-pomodoro-add-note’: A command that adds a note to the org item logbook that states a pomodoro was completed. - ‘oni-org-pomodoro-times’: A function that parses an org item logbook to figure out at what times a pomodoro had been completed for that particular task. - ‘oni-org-pomodoro-times-for-date’: A function that finds the times a pomodoro has been marked as completed for a specified date. - ‘oni-org-archive-old-tasks’: Unrelated to the other functions, just a command that archives all of the tasks that have been closed in the previous month. [1]: https://francescocirillo.com/products/book-the-pomodoro-technique
* Give some keybindings (hopefully) more descriptive namesGravatar Tom Willemse2022-12-131-2/+2
| | | | | | | This style of keybinding helps ‘which-key’[1] to display a better name for the command. [1]: https://github.com/justbur/emacs-which-key
* [oni-org] Don't display blocked tasks in the agenda at allGravatar Tom Willemse2022-11-131-1/+5
| | | | | I'm trying as much as I can to just only display what I can actually work on, and by definition anything that is blocked I cannot.
* [oni-org] Enable Special C-kGravatar Tom Willemse2022-11-131-0/+4
| | | | See the documentation of ‘org-special-ctrl-k’ for what it does
* [oni-org] Fix exclusion of ‘journal.org’Gravatar Tom Willemse2022-10-261-2/+2
|
* [oni-org] Add functions to create and update a Pomodoro ↵Gravatar Tom Willemse2022-10-251-2/+44
| | | | | | | | | | overview This is meant to be used as a daily overview of the Pomodoro's that I've gone through during the day. Should be put in my journal. For that reason, and because I haven't figured out how to make it idempotent on days that aren't today, I've added an exclusion of ‘journal.org’ to the ‘oni-org-update-all-dblocks-live’ function.
* [oni-org] Allow project references to work with archived ↵Gravatar Tom Willemse2022-10-191-28/+56
| | | | | | | tasks This commit fixes the issue that project tasks found in the archive of the org file can't be accessed through the link that's been generated. This fixes that.
* [oni-org] Add icon for “config” tasksGravatar Tom Willemse2022-09-282-2/+4
|
* [oni-org] Reduce the distance of the tags columnGravatar Tom Willemse2022-09-271-2/+2
| | | | This will make top-level headlines still place their tags before the line ends.
* [oni-org] Update available agenda commandsGravatar Tom Willemse2022-09-211-8/+16
|
* [oni-org] Add ‘form-feed’ package to dependenciesGravatar Tom Willemse2022-08-241-2/+2
| | | | This way I can use pretty looking horizontal rulers in my org files.
* [oni-org] Update default todo agenda commandGravatar Tom Willemse2022-06-211-2/+2
| | | | | | I've removed the hierarchy from my tags, so now I need to see any for the tag of the current host name, any computer, and any emacs tasks that have a state of TODO.
* [oni-org] Use IDs for org-mode links if a heading has oneGravatar Tom Willemse2022-06-201-1/+3
| | | | | | I don't want to set it up to always use an ID just yet because I'm not sure how well that will work with programs like Orgzly and Orgro which don't support using ID.
* [oni-org] Remove ‘mixed-pitch’Gravatar Tom Willemse2022-06-201-3/+2
| | | | | | | I tried it, and I just didn't like it. It looks alright, but alignment is difficult, and even though faces are set up to be fixed-pitch they still end up rendering as variable-pitch. During startup my org file also loads too early and doesn't get the right font set. It just doesn't really add enough.
* [oni-org] Add “Waiting for” to my overview and add ↵Gravatar Tom Willemse2022-06-131-2/+4
| | | | “Review” agenda
* [oni-org] Update all dynamic blocks on saveGravatar Tom Willemse2022-06-131-1/+7
| | | | Skip any that are in archived files.
* [oni-org] Search through the archive for project tasksGravatar Tom Willemse2022-06-051-13/+19
| | | | When I archive tasks I still want them to show up in the projects.
* [oni-org] Add function to write oni-project-steps dblockGravatar Tom Willemse2022-05-261-8/+9
| | | | | This allows me to run ‘org-dynamic-block-insert-dblock’ instead of having to write it manually each time.
* [oni-org] Switch to the marker's buffer before getting IDGravatar Tom Willemse2022-05-261-3/+4
|
* [oni-org] Find projects in any of my agenda filesGravatar Tom Willemse2022-05-261-1/+2
|
* [oni-org] Fix using ‘oni-org-move-subtree’ multiple ↵Gravatar Tom Willemse2022-05-131-3/+4
| | | | | | | | | | | | | times in a row Before, because of the use of ‘org-cut-subtree’, which in turn calls ‘kill-region’, which checks to see if ‘last-command’ equals ‘kill-region’ and uses either ‘kill-append’ or ‘kill-new’ repeated uses of the ‘oni-org-move-subtree’ command would append cut subtrees together and repeatedly paste the same subtrees over and over again. Setting ‘this-command’ will make sure that when the ‘kill-region’ checks the value of ‘last-command’ it won't find ‘kill-region’ there.
* [oni-org] Use ‘rx’ instead of ‘rx-to-string’Gravatar Tom Willemse2022-05-111-3/+5
| | | | | | ‘rx’ should expand to what is needed to make sure that the right thing is done. I feel more comfortable using this than ‘rx-to-string’ while unquoting the variables I use.
* [oni-org] Combine ‘oni-move-subtree-*’ into ↵Gravatar Tom Willemse2022-05-111-18/+22
| | | | | | | | ‘oni-org-move-subtree’ These two functions do essentially the same thing, but in different directions. This can also be done with one single interactive function. This way there is only one thing to call.
* [oni-org] Add commands to move subtrees relative to othersGravatar Tom Willemse2022-04-241-1/+22
|
* [oni-org] Add agenda to overview command and show 10 ↵Gravatar Tom Willemse2022-04-241-2/+3
| | | | items each
* [oni-org] Remove references to ‘oni-backlinks’Gravatar Tom Willemse2022-04-224-12/+0
| | | | | I haven't actually been using them at all, and they're just clogging up the ‘org-update-all-dblocks’ command by doing a bunch of unnecessary work.
* [oni-org] Add support for id: backlinks in oni-backlinks ↵Gravatar Tom Willemse2022-04-011-3/+6
| | | | dblock
* [oni-org] Add dynamic block for org for linking together ↵Gravatar Tom Willemse2022-04-011-0/+44
| | | | | | | | projects This is similar to my backlinks dynamic block, but it supports links by id and will print them as a checkbox so that the project can track progress by using the progress cookies.
* [oni-org] Add an agenda with tasks, articles, videos, ↵Gravatar Tom Willemse2022-04-011-1/+7
| | | | and music
* [oni-org] Show the agenda as the only windowGravatar Tom Willemse2022-03-151-1/+2
|
* [oni-org] Hide the body of the task marked as doneGravatar Tom Willemse2022-03-151-0/+7
|
* [oni-org] Enable ‘org-agenda-log-mode’ by default in ↵Gravatar Tom Willemse2022-02-281-1/+2
| | | | | | Org agendas This will show when I've marked items as done and when I've logged time on tasks.
* [oni-org] Icrease the duration of a single PomodoroGravatar Tom Willemse2022-02-081-2/+2
| | | | I've been experimenting with using 25 minutes instead of 20 for each Pomodoro.
* [oni-org] Specify some more properties on the capture frameGravatar Tom Willemse2022-02-081-1/+5
| | | | | The name helps to specify in the window manager that it shouldn't be tiled, and the width and height are just stylistic choices.
* [oni-org] Allow refiling to someday.orgGravatar Tom Willemse2022-01-121-2/+9
| | | | | I'm trying to get a little more serious about GTD, and using a someday file is part of that.
* [oni-org] Modify the columns format for the todo listGravatar Tom Willemse2022-01-111-2/+3
| | | | | Since I'm trying out the Pomodoro technique I want to be able to see at how many pomodoro's I've estimated something so that I can choose what to do next.
* [oni-org] Don't change the state of a TODO when I'm ↵Gravatar Tom Willemse2022-01-111-2/+3
| | | | | | | | | capturing it When a capture template is set up to clock in as I'm capturing it, this function would immediately change the state of the item to WIP (or whichever next status there was), but even though I'm spending time on the ticket at that point it's not in progress yet.
* [oni-org] Add a simple Pomodoro durationGravatar Tom Willemse2022-01-101-1/+12
| | | | | | I'm trying out the Pomodoro Technique and one of the things you're supposed to do is estimate your tasks in pomodoros. This change lets me estimate in, for example, 1p (20min) based on my specified pomodoro duration.
* Remove autoloads for snippet loadingGravatar Tom Willemse2021-12-011-3/+1
| | | | | Loading ‘yasnippet’ shouldn't automatically load my package configuration. If my package configuration hasn't been loaded it shouldn't try to include my snippets.
* [oni-org] Enable ‘electric-pair-local-mode’Gravatar Tom Willemse2021-11-301-1/+2
| | | | | With ‘electric-pair-local-mode’ and my inhibit function together I get a pretty reasonable way of typing fancy quotes and regular quotes in words like “don't”.
* [oni-org] Don’t require ‘ol-man’Gravatar Tom Willemse2021-10-171-2/+2
| | | | | It seems that ‘ol-man’ was moved from org-contrib to the main org repository, but the version of org hasn’t been updated yet, so my system can’t find it yet.
* [oni-org] Bring back Org RoamGravatar Tom Willemse2021-10-061-5/+6
|
* [oni-org] Don’t inherit the ‘project’ tagGravatar Tom Willemse2021-09-161-1/+2
|
* [oni-org] Log non-state notes into the task, outside a ↵Gravatar Tom Willemse2021-09-121-2/+16
| | | | drawer
* [oni-org] Remove old compiled snippets fileGravatar Tom Willemse2021-09-111-11/+0
|
* [oni-org] Add and enable `mixed-pitch' modeGravatar Tom Willemse2021-09-111-2/+3
|