Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Move emoji font configuration to the initial frame setup function | Case Duckworth | 2021-04-30 | |
| | ||||
* | Add the text scale to the modeline | Case Duckworth | 2021-04-30 | |
| | ||||
* | Change which-key popup delay | Case Duckworth | 2021-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. | |||
* | Change some `defun'+`advice-add' to `define-advice' | Case Duckworth | 2021-04-29 | |
| | ||||
* | Change upgrade-packages-and-restart to emacs-upgrade | Case Duckworth | 2021-04-29 | |
| | ||||
* | Massively refactor | Case Duckworth | 2021-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 glue | Case Duckworth | 2021-04-29 | |
| | ||||
* | Use my fork of `beginend' | Case Duckworth | 2021-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)). | |||
* | Add `restart-emacs' | Case Duckworth | 2021-04-28 | |
| | ||||
* | Automatically 'view' read-only buffers, and 'read' view buffers | Case Duckworth | 2021-04-28 | |
| | ||||
* | Advise `eval-region' to pulse | Case Duckworth | 2021-04-28 | |
| | | | | Just like SLIME. I also rewrote acdw/eval-region-or-buffer a bit. | |||
* | Merge branch 'main' of https://tildegit.org/acdw/emacs | Case Duckworth | 2021-04-27 | |
|\ | ||||
| * | Add gnus leader mapping | Case Duckworth | 2021-04-27 | |
| | | ||||
| * | Improve emoji font selection | Case Duckworth | 2021-04-27 | |
| | | | | | | | | | | Now, I loop through a list of candidates and append all that are available to the symbol fontset. | |||
| * | Change emacs-lisp eval bindings | Case Duckworth | 2021-04-27 | |
| | | | | | | | | | | Try to emulate slime a little more. I really like the flashy things, but IDK how to get that with elisp yet. | |||
* | | Add a leader key for elpher-bookmarks; add gemini-write | Case Duckworth | 2021-04-27 | |
| | | ||||
* | | Add check for server on startup | Case Duckworth | 2021-04-26 | |
| | | | | | | | | Why the hell not?! | |||
* | | Unbind M-s from paredit-mode-map | Case Duckworth | 2021-04-26 | |
| | | | | | | | | It shadows the (slightly more useful (for me (for now))) Isearch map(s). | |||
* | | Comment out icomplete-mode | Case Duckworth | 2021-04-26 | |
| | | | | | | | | | | Sometimes it'd be called and the function turning it off wouldn't be, for some reason. Weird stuff. | |||
* | | Change `:mode' to `:file-match' | Case Duckworth | 2021-04-26 | |
| | | | | | | | | Turns out setup.el has a local macro to deal with setting up modes. | |||
* | | Add `acdw/insert-iso-date' | Case Duckworth | 2021-04-26 | |
|/ | | | | Like `crux-insert-date', but I use ISO 8601. | |||
* | Fix dired-open | Case Duckworth | 2021-04-24 | |
| | ||||
* | Switch to pdf-tools fork | Case Duckworth | 2021-04-24 | |
| | ||||
* | Fix bindings in paredit-mode-modes | Case Duckworth | 2021-04-24 | |
| | ||||
* | Add <F12> bind to toggle eshell | Case Duckworth | 2021-04-22 | |
| | ||||
* | Add a leader bind to kill emacs | Case Duckworth | 2021-04-22 | |
| | ||||
* | Setup `dired' better | Case Duckworth | 2021-04-22 | |
| | | | | | Instead of resetting `setup-*' in each of dired's dependent packages, just install them using `:straight' and configure them in blocks. | |||
* | Add dired-git-info | Case Duckworth | 2021-04-22 | |
| | ||||
* | Open files better, depending on system | Case Duckworth | 2021-04-22 | |
| | ||||
* | Bail out of `setup' if straight fails | Case Duckworth | 2021-04-22 | |
| | ||||
* | Install w32-browser at work | Case Duckworth | 2021-04-22 | |
| | ||||
* | Move lexical-binding setting into a hook | Case Duckworth | 2021-04-22 | |
| | | | | | | | | | | | | *scratch* still doesn't apply the (setq-default lexical-binding t) form, but the advice I'd been giving `setup' broke the documentation generator function. So I just added lexical-binding to a hook when opening an emacs-lisp-mode buffer. Will this bite me later? Possibly. But I'll deal with that then. The worst that could happen is that I'd write another function, `setup-test' or something, that'd apply lexical-binding and then run `setup'. Or I could just set lexical-binding to t manually. Whatever. | |||
* | Add macro `with-message' | Case Duckworth | 2021-04-21 | |
| | ||||
* | Setup emoji fonts! | Case Duckworth | 2021-04-21 | |
| | | | | This is a much better alternative than the old crusty unicode-fonts package. | |||
* | Add messages in `acdw/eval-region-or-buffer' | Case Duckworth | 2021-04-21 | |
| | | | | Probably should write a macro, `with-message' or something. | |||
* | Add keybinding for crux-transpose-windows | Case Duckworth | 2021-04-21 | |
| | ||||
* | Add advice to kill lines and join | Case Duckworth | 2021-04-21 | |
| | ||||
* | Merge branch 'main' of https://tildegit.org/acdw/emacs | Case Duckworth | 2021-04-21 | |
|\ | ||||
| * | Merge branch 'main' of https://tildegit.org/acdw/emacs | Case Duckworth | 2021-04-20 | |
| |\ | ||||
| * | | Add `electric-cursor' | Case Duckworth | 2021-04-20 | |
| | | | | | | | | | | | | Mine own package! | |||
| * | | Fix some dumbness | Case Duckworth | 2021-04-20 | |
| | | | ||||
* | | | Fix boundp check in eshell-setup | Case Duckworth | 2021-04-21 | |
| |/ |/| | ||||
* | | Merge branch 'main' of https://tildegit.org/acdw/emacs | Case Duckworth | 2021-04-20 | |
|\| | ||||
| * | Use company for completion-in-region instead of corfu | Case Duckworth | 2021-04-20 | |
| | | | | | | | | | | I found out it does completion-in-region, and honestly, it's a better interface, and more uniform. | |||
| * | Correct things | Case Duckworth | 2021-04-20 | |
| | | ||||
| * | Change keybindings | Case Duckworth | 2021-04-19 | |
| | | ||||
* | | Use consult for completion-in-region | Case Duckworth | 2021-04-20 | |
| | | ||||
* | | Only grow mini-windows, instead of resizing intensely | Case Duckworth | 2021-04-20 | |
| | | ||||
* | | Autoload elpher-go | Case Duckworth | 2021-04-20 | |
| | | ||||
* | | Advise setup to use lexical-binding | Case Duckworth | 2021-04-20 | |
|/ |