Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | | Add `acdw/kill-a-buffer' and keybinding | Case Duckworth | 2021-04-19 | |
|/ | ||||
* | Merge branch 'main' of https://tildegit.org/acdw/emacs | Case Duckworth | 2021-04-14 | |
|\ | ||||
| * | Remove `vertico' from `comp-deferred-compilation-deny-list' | Case Duckworth | 2021-04-14 | |
| | | | | | | | | See https://github.com/minad/vertico/issues/15 -- might not be necessary | |||
| * | icomplete->vertico... again | Case Duckworth | 2021-04-14 | |
| | | | | | | | | | | | | | | this time, I just commented out icomplete, so it should be easier to test things. uff.... I guess I'm getting close to 1000 commits! so gotta do what i can, right? | |||
| * | Merge branch 'main' of https://tildegit.org/acdw/emacs | Case Duckworth | 2021-04-14 | |
| |\ | ||||
| * | | Remove company-active-map keys | Case Duckworth | 2021-04-14 | |
| | | | | | | | | | | | | The ones removed aren't necessary with company-tng-mode. | |||
| * | | Change :option to setq-default for some setup forms | Case Duckworth | 2021-04-14 | |
| | | | | | | | | | | | | | | | :option loads the symbols with custom-load-symbol, but for some of the settings I don't care about that. | |||
| * | | Change frame-title-format | Case Duckworth | 2021-04-14 | |
| | | | ||||
* | | | Remove some modes from dumb-format | Case Duckworth | 2021-04-14 | |
| |/ |/| | ||||
* | | Don't automatically show company at work | Case Duckworth | 2021-04-13 | |
|/ | | | | | company seems to be very slow on Windows. Until I can better diagnose the slowdown, I'm just disabling `company-idle-delay' at work. | |||
* | Fix a bug with paredit not properly indenting lisp | Case Duckworth | 2021-04-12 | |
| | | | | ... i honestly don't know. | |||
* | Back to `icomplete-mode' | Case Duckworth | 2021-04-12 | |
| | | | | | While `vertico' is nice, it's honestly still a bit buggy, and slower than `icomplete-vertical'. So there we are. | |||
* | Add `acdw-org/delete-backward-char' and advise | Case Duckworth | 2021-04-12 | |
| | | | | | | | | The advice I've added untabifies in addition to deleting the character, which enables the function to look at `delete-backward-char-untabify-method' or whatev. Also ... whitespace apparently? | |||
* | Configure `company-mode' | Case Duckworth | 2021-04-12 | |
| | ||||
* | Fix lispy modes hooks | Case Duckworth | 2021-04-12 | |
| | ||||
* | Set `initial-major-mode' to `emacs-lisp-mode' | Case Duckworth | 2021-04-12 | |
| | | | | I don't use C-j anyway. | |||
* | Told ya it was subject to change | Case Duckworth | 2021-04-12 | |
| | ||||
* | Add `visual-line-mode' to `org-mode-hook' | Case Duckworth | 2021-04-12 | |
| | | | | See the comments for details. Subject to change. | |||
* | Remove `ctrlf' and customize `isearch' | Case Duckworth | 2021-04-12 | |
| | | | | | | While Ctrlf is nice, it doesn't hook into other mechanisms of Emacs as well as Isearch. So .. I'm just going to put up with Isearch for now. Honestly I don't miss Ctrlf too much. | |||
* | Customize `customize' | Case Duckworth | 2021-04-12 | |
| | ||||
* | Set the bell to flash the mode-line | Case Duckworth | 2021-04-12 | |
| | | | | ... and beep at home (I like the little beep!) | |||
* | Add `company' | Case Duckworth | 2021-04-10 | |
| | | | | | | - Hook into `prog-mode' - Change some bindings - Add `slime-company' | |||
* | Refactor to define all lispish modes in one place | Case Duckworth | 2021-04-10 | |
| | | | | See variable `lispy-modes' | |||
* | Reorganize a bit | Case Duckworth | 2021-04-10 | |
| | ||||
* | Add `:mode' setup form | Case Duckworth | 2021-04-10 | |
| | | | | | (:mode EXTENSION) expands to (add-to-list 'auto-mode-alist '(EXTENSION . setup-mode)). | |||
* | Add docstrings | Case Duckworth | 2021-04-10 | |
| | ||||
* | Fix paredit-mode bindings in SLIME's REPL | Case Duckworth | 2021-04-10 | |
| | | | | | | I could (a) put these in a different place (in the `setup slime' form, for example), or (b) streamlined funcitons or ... something, but I did it this way and it works fine so that's that. Oh, I also wrote a longish docstring. | |||
* | Fix some comments for `outline-mode' | Case Duckworth | 2021-04-10 | |
| | | | | Still need to do the rest of init.el and early-init.el, and I suppose acdw*.el. | |||
* | Load slime-helper.el if it exists | Case Duckworth | 2021-04-09 | |
| | | | | | | I couldn't find a function that would return a filename /if/ it exists, so I had to write one: `expand-file-name-exists-p'. Might change the name at some point. | |||
* | Add ctrlf | Case Duckworth | 2021-04-09 | |
| | | | | TODO: incorporate some kind of visual find-replace with ctrlf | |||
* | Merge branch 'main' of https://tildegit.org/acdw/emacs | Case Duckworth | 2021-04-09 | |
|\ | ||||
| * | Add `slime' | Case Duckworth | 2021-04-08 | |
| | | | | | | | | | | | | On Windows, I use CLisp for LISP, so I need to add the path to exec-path there. I also moved `geiser''s definition to keep fennel and lua together. | |||
* | | Load clisp for slime | Case Duckworth | 2021-04-09 | |
|/ | ||||
* | Add `acdw/find-emacs-dotfiles' | Case Duckworth | 2021-04-07 | |
| | ||||
* | Remove minibuffer hook and make deletions more smarter | Case Duckworth | 2021-04-07 | |
| | | | | | Turns out, `smart-hungry-delete-mode' is mostly unnecessary. I can use the really dumb version. | |||
* | Fix immortal-buffer bug | Case Duckworth | 2021-04-07 | |
| | ||||
* | Merge branch 'main' of tildegit.org:acdw/emacs | Case Duckworth | 2021-04-07 | |
|\ | ||||
| * | Blink cursor once | Case Duckworth | 2021-04-06 | |
| | | ||||
* | | Uh | Case Duckworth | 2021-04-07 | |
| | | ||||
* | | Blink cursor once | Case Duckworth | 2021-04-07 | |
|/ | ||||
* | 7 | Case Duckworth | 2021-04-06 | |
| | ||||
* | Add more dired-subtree maps | Case Duckworth | 2021-04-06 | |
| | ||||
* | Unwrap `flyspell-correct' from the `when (executable-find ...' | Case Duckworth | 2021-04-06 | |
| | ||||
* | Switch `icomplete-vertical' for `vertico' | Case Duckworth | 2021-04-06 | |
| | ||||
* | Truncate lines in the minibuffer | Case Duckworth | 2021-04-06 | |
| | | | | The comment is wrong. | |||
* | Remove gnus | Case Duckworth | 2021-04-06 | |
| | ||||
* | Typos? | Case Duckworth | 2021-04-05 | |
| | ||||
* | Guile -> Scheme | Case Duckworth | 2021-04-04 | |
| | | | | Guile /is/ a scheme, after all. | |||
* | Fix paredit-mode bindings | Case Duckworth | 2021-04-04 | |
| | | | | <backspace> was being shadowed by `smart-hungry-delete'. | |||
* | Fix outshine comment leaders | Case Duckworth | 2021-04-03 | |
| |