about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAge
* Add clhs and move common-lisp-ide to be in alpha orderCase Duckworth2021-05-04
|
* Go back to OG beginendCase Duckworth2021-05-04
| | | | I think the author fixed the issue.
* Only show 200 messages in IMAPCase Duckworth2021-05-04
|
* Change gnus-group-mode keybindingsCase Duckworth2021-05-04
| | | | | | To save some time, I remap 'q' to bury the Gnus buffer, but to keep the functionality, I moved the original bindings (gnus-group-exit, gnus-group-quit) to 'Q' and '^Q', respectively.
* Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-05-04
|\
| * Only update packages with C-uCase Duckworth2021-05-03
| |
| * Stop asking to exit GnusCase Duckworth2021-05-03
| |
| * Add hook to message modeCase Duckworth2021-05-03
| |
| * Move hooks to a better spot for Gnus CloudCase Duckworth2021-05-03
| |
| * Add `winum'Case Duckworth2021-05-03
| | | | | | | | | | I only rebind winum-select-window-* in graphical buffers because that's apparently the only place where C-[n] is the same as M-[n].
| * Add `idle-require'Case Duckworth2021-05-03
| | | | | | | | | | Not sure how useful it'll be, but hopefully it'll help make some things a little faster...
| * Add GweneCase Duckworth2021-05-03
| | | | | | | | | | | | | | | | | | I still need to import my OPML using one of these: - https://wpc.io/blog/posts/bulk-import-rss-feeds-to-gnus-via-gwene.html - http://gwene.org/opml.php ... when I get home.
| * Add hooks to download and upload gnus data to the cloudCase Duckworth2021-05-03
| | | | | | | | Gnus Cloud ... sort of works? I'm honestly not sure about it, lol.
| * Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-05-02
| |\
| * | Add ledger-modeCase Duckworth2021-05-02
| | |
* | | Add slime-repl-return-at-endCase Duckworth2021-05-04
| |/ |/| | | | | Get the benefits of paredit with easy keys in the REPL!
* | Add `dos2unix'Case Duckworth2021-05-01
| | | | | | | | | | | | | | Does the same thing (in general) as the dos2unix C program. By which I mean, it converts \r\n to \n in the buffer. It doesn't do anything else. ... So it really doesn't do much of the same thing as dos2unix.
* | Configure Gnus CloudCase Duckworth2021-05-01
| | | | | | | | | | | | This is going to cause a merge conflict later. I've made `gnus-cloud-storage-method' `base64' because work doesn't have GPG or gzip and I don't want to bother downloading them.
* | Switch to SLY for Lisp REPLCase Duckworth2021-05-01
| | | | | | | | | | I've kept SLIME's config around, in case I need it -- which REPL is loaded depends on the `acdw/cl-ide' variable.
* | Tweak which-key idle timingCase Duckworth2021-05-01
|/ | | | | | It does seem as though `which-key-show-early-on-C-h' isn't respected here, but I'm not sure exactly what the issue is. Could be the `which-key-setup-minibuffer'... more research is needed.
* Change the fringe faceCase Duckworth2021-04-30
| | | | "dim gray" looks good on both black and white.
* Try to improve gnus HTML handlingCase Duckworth2021-04-30
|
* Customize fringesCase Duckworth2021-04-30
| | | | | Still to think about: changing the `fringe' face. Do I want it another color? Do I even need any buffer boundaries? Hm....
* Move emoji font configuration to the initial frame setup functionCase Duckworth2021-04-30
|
* Add the text scale to the modelineCase Duckworth2021-04-30
|
* Change which-key popup delayCase Duckworth2021-04-30
| | | | | | | | I found out about `which-key-delay-functions', which lets me tweak the delay depending on what the key sequence is. I set up a function to show bindings in my "leader map" immediately, but to delay for a bit on everything else. I also put which-key stuff in the minibuffer -- I think it looks pretty good.
* Inhibit loading X ResourcesCase Duckworth2021-04-29
|
* Change some `defun'+`advice-add' to `define-advice'Case Duckworth2021-04-29
|
* Change upgrade-packages-and-restart to emacs-upgradeCase Duckworth2021-04-29
|
* Break emacs-git-pull-config out of emacs-refreshCase Duckworth2021-04-29
| | | | ... and rename refresh-emacs to emacs-refresh ...
* Massively refactorCase Duckworth2021-04-29
| | | | | | | | | | | | | | - Redefine as much as possible as `setup' forms - Reorganize into "Setup", "Basics", and "Packages" sections - Within each section, alphabetize sexps - Also (mostly) alphabetize acdw- files - (Not the ones that are almost completely others' code) - Sidebar: Why is this not a thing in elisp!? Should write a function - Break karthink's thing into another library `acdw-re' - Add a function to `acdw': `acdw/find-emacs-source' - Should refactor that to better find the source I think everything looks much more better now!
* Replace anzu with karthink's re-builder glueCase Duckworth2021-04-29
|
* Use my fork of `beginend'Case Duckworth2021-04-28
| | | | | | I don't know why, but (setf (point) (point-min)) doesn't work (see the `org-mode' function). I changed it to the more ... older(?) version, (goto-char (point-min)).
* Show all messages in imap mailboxenCase Duckworth2021-04-28
|
* Add `restart-emacs'Case Duckworth2021-04-28
|
* Automatically 'view' read-only buffers, and 'read' view buffersCase Duckworth2021-04-28
|
* Advise `eval-region' to pulseCase Duckworth2021-04-28
| | | | Just like SLIME. I also rewrote acdw/eval-region-or-buffer a bit.
* Don't worry about a ~/.newsrc fileCase Duckworth2021-04-27
| | | | I don't plan on using any other news readers.
* Add gnus-options{,-not}-subscribe settingsCase Duckworth2021-04-27
| | | | Does this leak a little bit? Sure. But I /think/ (god, I pray) it's okay.
* Add prefix arg to pull ~/.emacs from gitCase Duckworth2021-04-27
| | | | I could probably do better things with the output and error buffers. Whatever.
* Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-04-27
|\
| * Add gnus leader mappingCase Duckworth2021-04-27
| |
| * Improve emoji font selectionCase Duckworth2021-04-27
| | | | | | | | | | Now, I loop through a list of candidates and append all that are available to the symbol fontset.
| * Change emacs-lisp eval bindingsCase Duckworth2021-04-27
| | | | | | | | | | Try to emulate slime a little more. I really like the flashy things, but IDK how to get that with elisp yet.
| * Change a couple gnus settingsCase Duckworth2021-04-27
| |
| * Add acdw/reading-mode to read gnus articlesCase Duckworth2021-04-27
| |
| * Fix commentsCase Duckworth2021-04-27
| |
* | Add a leader key for elpher-bookmarks; add gemini-writeCase Duckworth2021-04-27
| |
* | Add check for server on startupCase Duckworth2021-04-26
| | | | | | | | Why the hell not?!
* | Unbind M-s from paredit-mode-mapCase Duckworth2021-04-26
| | | | | | | | It shadows the (slightly more useful (for me (for now))) Isearch map(s).