aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove org-wild-notifierGravatar Tom Willemsen2020-01-271-5/+2
| | | | It's a little too wild for my Windows machine, it starts a whole bunch of Emacs child processes that eat up all the CPU.
* Enable org-wild-notifier-mode in org-mode for notificationsGravatar Tom Willemse2020-01-261-1/+4
|
* Search in multiple places for toast.exe on WindowsGravatar Tom Willemse2020-01-261-3/+3
|
* Update settings for oni-alertGravatar Tom Willemse2020-01-211-5/+8
|
* Add dependency on oni-alert for oni-orgGravatar Tom Willemse2020-01-211-2/+2
|
* Change directory of org documents on WindowsGravatar Tom Willemse2020-01-211-2/+2
| | | | Instead of using u: I should make a symlink to u: from my Documents to keep things consistent.
* Add more custom agenda commandsGravatar Tom Willemse2020-01-141-2/+15
|
* Add ‘smartparens’ to ‘oni-sh’Gravatar Tom Willemse2020-01-143-3/+52
|
* Fix integration test for ‘oni-cpp’Gravatar Tom Willemse2020-01-141-2/+2
| | | | | The output contains more than just the print statement in the test, but it ends with the result.
* Fix integration test for oni-cppGravatar Tom Willemse2020-01-141-1/+1
| | | | ‘oni-c++’ was renamed to ‘oni-cpp’
* Require subr-x in org-mode for ‘when-let’Gravatar Tom Willemse2020-01-141-1/+2
|
* Require oni-org for its unit testsGravatar Tom Willemse2020-01-131-0/+2
|
* Generate different colors for TODO keywords and tagsGravatar Tom Willemse2020-01-133-1/+58
|
* Rename oni-c++ to oni-cppGravatar Tom Willemse2020-01-131-7/+7
|
* Add missing autoload to oni-confGravatar Tom Willemse2020-01-131-1/+3
|
* Add integration test for oni-c++Gravatar Tom Willemse2020-01-132-0/+18
|
* Fix file permissions for oni-bats.batsGravatar Tom Willemse2020-01-131-0/+0
|
* Add integration test for oni-browse-urlGravatar Tom Willemse2020-01-132-0/+18
|
* Add integration test for oni-confGravatar Tom Willemse2020-01-122-0/+18
|
* Don’t show the default help tooltip on the mode-lineGravatar Tom Willemse2020-01-101-1/+4
|
* Enable spell checking in org-modeGravatar Tom Willemse2020-01-081-1/+2
|
* Make the wording of the different integration tests more ↵Gravatar Tom Willemse2020-01-084-4/+4
| | | | consistent
* Fix the bats auto-insert templateGravatar Tom Willemse2020-01-081-2/+3
| | | | Don’t try to add it if it hasn’t been loaded.
* Print output of oni-bats integration test on failureGravatar Tom Willemse2020-01-081-0/+2
|
* Integration test each individual packageGravatar Tom Willemse2020-01-082-21/+57
| | | | | In order to differentiate better between the two types of tests, rename the test commands to unit-test.
* Try running integration testsGravatar Tom Willemse2020-01-081-9/+19
|
* Add DockerfileGravatar Tom Willemse2020-01-081-0/+3
| | | | | This Dockerfile is used to build the image used for integration tests, it’s the regular Emacs image, but with the bats package added.
* Add docker configurationGravatar Tom Willemse2020-01-072-0/+41
|
* Add test loading oni-bookmarkGravatar Tom Willemse2020-01-072-5/+9
|
* Add test loading oni-autohotkeyGravatar Tom Willemse2020-01-071-0/+9
|
* Add auto-insert template for bats-modeGravatar Tom Willemse2020-01-073-1/+22
|
* Move bats tests to test/integrationGravatar Tom Willemse2020-01-072-0/+0
|
* Move test if oni-alert loads into bats testGravatar Tom Willemse2020-01-072-7/+11
| | | | With bats I can better test Emacs from a clean state.
* Automatically load scheme-mode for scsh filesGravatar Tom Willemse2020-01-062-1/+25
| | | | When the interpreter contains scsh, load ‘scheme-mode’.
* Only deploy on the master branchGravatar Tom Willemse2019-12-111-0/+2
|
* Switch the Test and Package stagesGravatar Tom Willemse2019-12-112-136/+45
| | | | | | In order to simplify the testing of each package, do the packaging step first so that when it gets to the testing stage it can load the packaged files from the local repository and manage the interdependencies that way.
* Enable ‘auto-fill-mode’ for comments in most ↵Gravatar Tom Willemse2019-12-1025-25/+176
| | | | | | | programming modes The ones that are already backed by a formatter, such as Java, Python and sh don’t need it.
* Use ‘ibuffer-jump’ instead of ‘ibuffer’Gravatar Tom Willemse2019-12-101-2/+2
| | | | | ‘ibuffer-jump’ moves the point to be on the buffer that you jump from, ‘ibuffer’ doesn’t change point.
* Fix enabling ‘sh-mode’ for ‘PKGBUILD’ filesGravatar Tom Willemse2019-11-251-1/+2
|
* Add bookmarks file in org-modeGravatar Tom Willemse2019-11-251-2/+3
|
* Use ‘sh-mode’ for PKGBUILD filesGravatar Tom Willemse2019-11-191-1/+3
|
* Add configuration for ‘bats-mode’Gravatar Tom Willemse2019-11-171-0/+35
|
* Expand the description of ‘oni-sh’Gravatar Tom Willemse2019-11-171-1/+10
|
* Add documentation command for LSPGravatar Tom Willemse2019-10-212-8/+26
| | | | | | The default way lsp (at least for Java) is displayed is annoying. I’m used to calling documentation with a keybinding like in Emacs Lisp. This command makes it more like that.
* Set org-list-description-max-indentGravatar Tom Willemse2019-10-181-1/+8
| | | | | | It's always bothered me that a description list in org-mode might be indented quite a bit if the terms aren't long enough. With this change they'll always indent the same way, using 5 spaces.
* Go back to yoshi-themeGravatar Tom Willemse2019-10-161-3/+3
|
* Add some more key bindings to the java refactor hydraGravatar Tom Willemse2019-10-161-1/+5
|
* Re-enable ‘lsp-ui-doc-mode’ and enable ↵Gravatar Tom Willemse2019-10-162-3/+11
| | | | ‘lsp-lens-mode’
* Add AutoHotKey configurationGravatar Tom Willemse2019-10-101-0/+39
|
* Add function to start ediff from the command-lineGravatar Tom Willemse2019-10-101-1/+9
|