diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2019-12-23 14:17:16 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2019-12-23 14:17:16 -0800 |
commit | 7cab57f33d12c199349f4f801f85d6c647c099ed (patch) | |
tree | 253ad78b7b81bf338942036d6a8559e1245e1abf /emacs | |
parent | aspell: Add more words. (diff) | |
download | emacs.d-7cab57f33d12c199349f4f801f85d6c647c099ed.tar.gz |
emacs: don't complete abbreviations.
If I understand correctly, this was trying to complete 'words' based on the rest of the document, which I don't want.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-company.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-company.el b/emacs.d/custom/fcuny-company.el index 69b6203..fab7c99 100644 --- a/emacs.d/custom/fcuny-company.el +++ b/emacs.d/custom/fcuny-company.el @@ -3,7 +3,6 @@ :diminish company-mode :custom - (company-backends (delete 'company-dabbrev company-backends)) (company-minimum-prefix-length 2) (company-tooltip-align-annotations t) (company-tooltip-limit 12) |