about summary refs log tree commit diff stats
path: root/init.el
Commit message (Collapse)AuthorAge
* Tweak `org-table-copy-down'Case Duckworth2021-04-19
| | | | | Now <S-return> will do its regular thing /in/ a table, but will also work /outside/ a table as a regular <return>.
* Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-04-19
|\
| * Add (and ignore) pkg/Case Duckworth2021-04-19
| | | | | | | | I'm going to put packages I develop in there.
| * Move vertico-related config into its `setup' formCase Duckworth2021-04-19
| |
| * Fix clipboard pasting non-ASCII charactersCase Duckworth2021-04-19
| | | | | | | | | | | | | | | | | | | | | | ... at least on Windows. Solution found here: https://emacs.stackexchange.com/questions/22727/pasting-text-from-clipboard-why-m-instead-of-linebreaks Other resources: https://emacs.stackexchange.com/questions/22727/pasting-text-from-clipboard-why-m-instead-of-linebreaks https://goyoambrosio.com/2018/06/Dealing-with-utf-8-in-Emacs/
| * Fix `:mode' keyword in `setup'Case Duckworth2021-04-19
| |
| * Begin again with GnusCase Duckworth2021-04-19
| |
| * Lower echo-keystrokes timeoutCase Duckworth2021-04-19
| |
| * Enable minibuffer-electric-default-modeCase Duckworth2021-04-19
| |
| * Switch out company for corfuCase Duckworth2021-04-17
| | | | | | | | | | Corfu is like, alpha software, but it already seems pretty useful for what I need.
| * Consolidate home appsCase Duckworth2021-04-17
| |
| * Reorganize magit settingsCase Duckworth2021-04-17
| |
| * Autoload `elpher-bookmarks'Case Duckworth2021-04-17
| |
| * Re-organize org settingsCase Duckworth2021-04-17
| |
| * set lexical-binding by defaultCase Duckworth2021-04-17
| |
| * Don't add a space after slime company completionCase Duckworth2021-04-15
| |
| * Try to fix vertico et alCase Duckworth2021-04-15
| |
| * Enable lexical-binding by defaultCase Duckworth2021-04-15
| |
* | Add `acdw/kill-a-buffer' and keybindingCase Duckworth2021-04-19
|/
* Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-04-14
|\
| * Remove `vertico' from `comp-deferred-compilation-deny-list'Case Duckworth2021-04-14
| | | | | | | | See https://github.com/minad/vertico/issues/15 -- might not be necessary
| * icomplete->vertico... againCase Duckworth2021-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/emacsCase Duckworth2021-04-14
| |\
| * | 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
| | |
* | | Remove some modes from dumb-formatCase Duckworth2021-04-14
| |/ |/|
* | 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.
* 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.
* 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.
* 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.