aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Show ‘t’, ‘nil’, and numbers as constants in ↵Gravatar Tom Willemse2020-06-161-1/+11
| | | | Emacs Lisp
* Prevent ‘auto-fill’ from filling the ↵Gravatar Tom Willemse2020-06-161-4/+5
| | | | Package-Requires line
* Add handle specification for oni-elispGravatar Tom Willemse2020-06-161-2/+7
|
* Fix active keymap issue in esh-autosuggestGravatar Tom Willemse2020-06-151-1/+7
| | | | | ‘esh-autosuggest’ sets the value for ‘company-active-map’, but because I use ‘company-posframe’ I need it to set ‘company-posframe-active-map’.
* Add circe-serenity and org-azure-devops development reposGravatar Tom Willemse2020-05-141-1/+9
|
* Add my vc-p4 package to package-archivesGravatar Tom Willemse2020-05-131-2/+6
|
* Fixup oni-bat loading testGravatar Tom Willemse2020-05-111-3/+3
|
* Add functions to create notes while reading ebooksGravatar Tom Willemse2020-05-111-2/+60
|
* Add snippet for autoload cookieGravatar Tom Willemse2020-05-021-0/+5
|
* Enable ‘bmx-mode’Gravatar Tom Willemse2020-05-023-0/+54
| | | | ‘bmx-mode’ is a package to be used with ‘bat-mode’.
* Add gcmh - the Garbage Collection Magic HackGravatar Tom Willemse2020-04-301-2/+4
|
* Add rainbow-delimiters-mode to HaskellGravatar Tom Willemse2020-04-301-2/+7
| | | | | Also enable ‘electric-pair-local-mode’ and ‘rainbow-delimiters-mode’ in Inferior Haskell buffers.
* Don’t specify a variable pitch fontGravatar Tom Willemse2020-04-301-2/+1
| | | | | This way doesn’t work with running Emacs as a daemon. It doesn’t seem to be doing bold right...
* Colorize shr headings a bit moreGravatar Tom Willemse2020-04-301-1/+9
|
* Fix making scripts executable on saveGravatar Tom Willemse2020-04-302-3/+3
|
* Fix oni-core testsGravatar Tom Willemse2020-04-262-8/+8
|
* Silence ‘recentf-save-list’Gravatar Tom Willemse2020-04-261-2/+7
| | | | | | ‘recentf-save-list’ sends a message that it’s saving the recentf list, but seeing that after every time I don’t do something for 10 seconds in Emacs gets a little annoying.
* Load gravatar avatars in GnusGravatar Tom Willemse2020-04-231-1/+3
|
* Fix up shopping listGravatar Tom Willemse2020-04-201-6/+2
|
* Hide future scheduled items from tag searchesGravatar Tom Willemse2020-04-201-1/+2
| | | | | | | | The value of the variable ‘org-agenda-todo-ignore-scheduled’ causes it to ignore any scheduled items that aren’t scheduled for today or in the past, ‘org-agenda-tags-todo-honor-ignore-options’ makes the value of ‘org-agenda-todo-ignore-scheduled’ also apply to tag searches. Since I’ve replaced my global todo list with a tag search, this is preferable.
* Add extra newline to the plain note capture templateGravatar Tom Willemse2020-04-201-2/+2
| | | | | | I’m using the date as a kind-of header, calling ‘fill-paragraph’ doesn’t understand that the date isn’t part of the paragraph. It also looks a little cleaner in my opinion.
* Fix code example capture for non-unique buffersGravatar Tom Willemse2020-04-201-3/+3
| | | | | | If there are 2 files name "Program.cs" open, for example, the simple ‘(get-buffer "Program.cs")’ won’t work. ‘find-file-noselect’ can work if we pass in the full file path using the ‘%F’ format placeholder.
* Automatically make shell scripts executableGravatar Tom Willemse2020-04-201-1/+2
|
* Add date to GNUS summary linesGravatar Tom Willemse2020-04-151-1/+2
|
* Tell sbcl not to use lineditGravatar Tom Willemse2020-04-151-2/+2
| | | | | linedit is a package for SBCL (and other lisps?) somewhat like readline. Make interactive use outside of Emacs much nicer.
* Use font-awesome to display org checkboxesGravatar Tom Willemse2020-04-132-9/+10
|
* Add ‘a’ and ‘e’ keybindings to move to beginning ↵Gravatar Tom Willemse2020-04-121-1/+4
| | | | and end of line
* Shrink ✓ to make it fit in the mode-lineGravatar Tom Willemse2020-04-101-3/+4
|
* Resize Emacs frames by pixelsGravatar Tom Willemse2020-04-101-1/+2
| | | | Instead of the default resising by columns and rows, use pixels.
* Load autorevert explicitly in testsGravatar Tom Willemse2020-04-091-1/+3
|
* Diminish auto-revert-mode to Gravatar Tom Willemse2020-04-092-2/+27
|
* Apply fontset settings when a frame is created, tweak ↵Gravatar Tom Willemse2020-04-091-21/+30
| | | | | | | | | | | font size Instead of setting the fontset things immediately always, check if we’re running as a daemon and if so, delay setting the fontsets until after a frame is created. This will set the fontset for each frame individually. Tweak the font size of the Font Awesome icons to fit better with the rest of the fonts.
* Diminish org-ednaGravatar Tom Willemse2020-04-093-2/+43
|
* Explicitly load yasnippet for testingGravatar Tom Willemse2020-04-091-2/+5
|
* Excplicitly load ‘oni-ivy’ for testingGravatar Tom Willemse2020-04-091-3/+8
|
* Change the column the habit graphs are printed inGravatar Tom Willemse2020-04-081-8/+9
|
* Enable electric pairing in HaskellGravatar Tom Willemse2020-04-081-1/+3
|
* Fix tests by including ‘subr-x’Gravatar Tom Willemse2020-04-085-17/+22
| | | | | ‘string-empty-p’ is defined in ‘subr-x’ and this library isn’t loaded into Emacs by default.
* Test isearch-mode diminishing using a constantGravatar Tom Willemse2020-04-082-5/+9
| | | | | | | Apparently in the docker container that’s running the tests, reading  from the command-line makes it a multibyte character (105 776 127 130), but defined in Emacs it’s a unibyte character (61442). This might have something to do with UTF-16 vs UTF-8?
* Fix diminishing minor modes when reloading librariesGravatar Tom Willemse2020-04-0813-14/+274
|
* Properly load ‘oni-paredit’ when ‘paredit’ is loadedGravatar Tom Willemse2020-04-081-2/+2
|
* Add basic fish shell script configurationGravatar Tom Willemse2020-04-083-0/+61
|
* Use ‘nov-mode’ for ‘.epub’ filesGravatar Tom Willemse2020-04-071-1/+4
|
* Disable ‘shfmt-on-save-mode’ for ‘bats-mode’ buffersGravatar Tom Willemse2020-04-072-1/+16
|
* Fix arguments for shfmtGravatar Tom Willemse2020-04-071-2/+2
|
* Ensure idle timer for ‘recentf-save-list’ only gets ↵Gravatar Tom Willemse2020-04-072-2/+16
| | | | created once
* Fix typoGravatar Tom Willemse2020-04-071-1/+1
|
* Use ‘nxml-mode’ for ‘.proj’ and ‘.targets’ filesGravatar Tom Willemse2020-04-072-1/+27
| | | | Both of these file types are used for MSBuild.
* Ensure ~/.emacs.d/data/ exists when testing ‘oni-core’Gravatar Tom Willemse2020-04-071-0/+2
| | | | | | | If the directory doesn’t exist, ‘recentf-mode’ will try to save the recent file list and fail because Emacs automatically asks if the directory should be created. Since the test is running in a non-interactive environment, it’ll fail to read the user’s answer.
* Add navigation functions for end-of-line and ↵Gravatar Tom Willemse2020-04-074-1/+130
| | | | beginning-of-line