aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [oni-elfeed] Add another urlGravatar Tom Willemse2022-09-201-2/+3
|
* [oni-smartparens] Add keybind for ↵Gravatar Tom Willemse2022-09-201-2/+3
| | | | ‘sp-splice-sexp-killing-backward’
* [oni-groovy] Replace ‘electric-pair-local-mode’ with ↵Gravatar Tom Willemse2022-09-201-3/+3
| | | | Smartparens
* [oni-circe] Clear the polybar circe widget when Emacs is ↵Gravatar Tom Willemse2022-08-261-1/+6
| | | | closed
* [oni-emms] Set up emms-mpdGravatar Tom Willemse2022-08-261-1/+7
|
* [oni-circe] Add a couple more channelsGravatar Tom Willemse2022-08-261-1/+3
|
* [oni-circe] Show channel status in polybarGravatar Tom Willemse2022-08-261-45/+46
| | | | | | I don't like that this global status thing shows up everywhere on the mode line, which is already quite full with minor modes and the like. This way it's only ever in one place.
* [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-elfeed] Add some feedsGravatar Tom Willemse2022-08-171-2/+4
|
* [oni-notmuch] Give deleted emails a different faceGravatar Tom Willemse2022-08-171-1/+4
|
* Add oni-emms moduleGravatar Tom Willemse2022-08-172-1/+37
|
* [oni-notmuch] Add ‘ol-notmuch’ packageGravatar Tom Willemse2022-07-181-2/+2
|
* [oni-yaml] Add ‘yaml-pro’ packageGravatar Tom Willemse2022-07-181-2/+3
|
* [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-elfeed] Add more feedsGravatar Tom Willemse2022-05-261-2/+3
|
* [oni-core] Load notmuch configGravatar Tom Willemse2022-05-261-1/+2
|
* [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-elfeed] Add some feedsGravatar Tom Willemse2022-05-261-2/+4
|
* [oni-notmuch] Add notmuch configurationGravatar Tom Willemse2022-05-261-0/+43
|
* [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-browse] Redirect any ‘*.medium.com’ URL to ↵Gravatar Tom Willemse2022-04-011-42/+34
| | | | scribe.rip
* [oni-groovy] Add defun-based navigation propertiesGravatar Tom Willemse2022-04-011-1/+34
| | | | | With this also comes the ability to call ‘narrow-to-defun’ and have it show only the current function.
* [oni-package] Add tekuti-el repositoryGravatar Tom Willemse2022-04-011-1/+5
|
* [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-lsp] Remove ivy dependencyGravatar Tom Willemse2022-03-181-6/+2
|
* [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-vc] Fix function referenceGravatar Tom Willemse2022-03-021-2/+2
|
* [oni-projectile] Remove dependency on ivyGravatar Tom Willemse2022-03-011-8/+3
|
* [oni-core] Put cygwin at the end of the exec-path list ↵Gravatar Tom Willemse2022-03-011-3/+3
| | | | | | | | on Windows There are some programs that live in both that and some other directories that I've added on Windows. This makes sure that the cygwin ones don't overwrite everything else, since usually I use different versions like MSYS2.
* [oni-core] Remove counsel (and ivy) and replace with verticoGravatar Tom Willemse2022-03-011-3/+47
| | | | | | | | This also brings in marginalia, orderless, consult, and embark. I've been reading about these projects for a while and after some looking around it seems like these are at the very least interesting, I'm trying it out for a while.
* [oni-browse-url] Add ‘itnext.io’ as a Medium urlGravatar Tom Willemse2022-02-281-1/+4
|
* [oni-lsp] Use a posframe to show a function signatureGravatar Tom Willemse2022-02-281-1/+2
| | | | Instead of the minibuffer.
* [oni-lsp] Remove non-existent variableGravatar Tom Willemse2022-02-281-3/+1
|
* [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-core] Load the ‘generic-x’ libraryGravatar Tom Willemse2022-02-281-1/+2
| | | | | This library defines a few useful generic major modes like ‘etc-fstab-generic-mode’, and ‘java-properties-generic-mode’.