about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAge
* Make `org-return-dwim' auto-fill-mode-awareCase Duckworth2021-04-14
| | | | | | | | | | Added a block at the top of the function to call `auto-fill-function' if it's enabled, and I changed the calls to `newline' to `insert "\n"`, due to ... something. It was having issues figuring out that the new lines were list items I think. I also removed the message part in the middle of the function that I forgot to remove before.
* Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-04-14
|\
| * Change (insert "\n\n") -> (newline)Case Duckworth2021-04-13
| |
| * Don't automatically show company at workCase Duckworth2021-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.
| * `org-return-dwim': work in nested listsCase Duckworth2021-04-13
| | | | | | | | | | | | `org-return-dwim' now ends a list on an empty nested list item. See the comment for details.
| * Formatting etc.Case Duckworth2021-04-13
| | | | | | | | This keeps happening :/
| * Add a generate custom ids function for headingsCase Duckworth2021-04-13
| | | | | | | | From amitp.blogspot.com.
* | Remove company-active-map keysCase Duckworth2021-04-14
| | | | | | | | The ones removed aren't necessary with company-tng-mode.
* | Change :option to setq-default for some setup formsCase Duckworth2021-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-formatCase Duckworth2021-04-14
|/
* Fix a bug with paredit not properly indenting lispCase Duckworth2021-04-12
| | | | ... i honestly don't know.
* Back to `icomplete-mode'Case Duckworth2021-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 adviseCase Duckworth2021-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 Duckworth2021-04-12
|
* Fix lispy modes hooksCase Duckworth2021-04-12
|
* Set `initial-major-mode' to `emacs-lisp-mode'Case Duckworth2021-04-12
| | | | I don't use C-j anyway.
* Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-04-12
|\
| * Told ya it was subject to changeCase Duckworth2021-04-12
| |
* | Told ya it was subject to changeCase Duckworth2021-04-12
|/
* Add `visual-line-mode' to `org-mode-hook'Case Duckworth2021-04-12
| | | | See the comments for details. Subject to change.
* Remove `ctrlf' and customize `isearch'Case Duckworth2021-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 Duckworth2021-04-12
|
* Set the bell to flash the mode-lineCase Duckworth2021-04-12
| | | | ... and beep at home (I like the little beep!)
* Add `company'Case Duckworth2021-04-10
| | | | | | - Hook into `prog-mode' - Change some bindings - Add `slime-company'
* Refactor to define all lispish modes in one placeCase Duckworth2021-04-10
| | | | See variable `lispy-modes'
* Reorganize a bitCase Duckworth2021-04-10
|
* Add `:mode' setup formCase Duckworth2021-04-10
| | | | | (:mode EXTENSION) expands to (add-to-list 'auto-mode-alist '(EXTENSION . setup-mode)).
* Add docstringsCase Duckworth2021-04-10
|
* Fix paredit-mode bindings in SLIME's REPLCase Duckworth2021-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 Duckworth2021-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 existsCase Duckworth2021-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.
* WhitespaceCase Duckworth2021-04-09
|
* Add ctrlfCase Duckworth2021-04-09
| | | | TODO: incorporate some kind of visual find-replace with ctrlf
* Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-04-09
|\
| * Add `slime'Case Duckworth2021-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 slimeCase Duckworth2021-04-09
| |
* | Change font loading logic to hopefully be more robustCase Duckworth2021-04-09
|/ | | | | Based heavily (basically copied) from https://github.com/olivertaylor/olivertaylor.github.io/blob/master/notes/20210324_emacs-optical-font-adjustment.org
* Add `acdw/find-emacs-dotfiles'Case Duckworth2021-04-07
|
* Remove minibuffer hook and make deletions more smarterCase Duckworth2021-04-07
| | | | | Turns out, `smart-hungry-delete-mode' is mostly unnecessary. I can use the really dumb version.
* Fix immortal-buffer bugCase Duckworth2021-04-07
|
* Merge branch 'main' of tildegit.org:acdw/emacsCase Duckworth2021-04-07
|\
| * Blink cursor onceCase Duckworth2021-04-06
| |
* | UhCase Duckworth2021-04-07
| |
* | Blink cursor onceCase Duckworth2021-04-07
|/
* 7Case Duckworth2021-04-06
|
* Remove acdw/mapCase Duckworth2021-04-06
|
* Add more dired-subtree mapsCase Duckworth2021-04-06
|
* Unwrap `flyspell-correct' from the `when (executable-find ...'Case Duckworth2021-04-06
|
* Switch `icomplete-vertical' for `vertico'Case Duckworth2021-04-06
|
* Truncate lines in the minibufferCase Duckworth2021-04-06
| | | | The comment is wrong.