diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-16 01:27:28 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-16 01:27:28 +0200 |
commit | 27663f731cdad91ee2b1e31a692058dd2bf12a96 (patch) | |
tree | 4f50ba6efd958378b917004ad85f0188f7cd2810 /.config/emacs | |
parent | cc3a49d8ca6df13f6a7bff99c4119ffbc0bfed5b (diff) |
emacs: Add a TODO for company
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/config.org | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 881c79f..1dc0314 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -517,13 +517,15 @@ that have components beginning with /foo/, /bar/, and /baz/ in that order. #+END_SRC -*** Company +*** TODO Company Company is a package to give me actual completion popups; it’s super useful for autocompleting code but has other uses too I guess. #+BEGIN_SRC elisp + ;; TODO: Properly configure ‘company’ + (use-package company :hook ((conf-mode prog-mode) . company-mode) :custom |