summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2019-07-19 15:28:29 +0200
committerAlan Pearce2019-07-19 15:28:29 +0200
commit7f96c1d5602a043a2702c03e6bdce309c04417d3 (patch)
tree0a994749528cdb4901728e6001e379cdbb4fa119
parent04a61b9a8b9aa4628deb96f08c26d85500b623cc (diff)
downloaddotfiles-7f96c1d5602a043a2702c03e6bdce309c04417d3.tar.lz
dotfiles-7f96c1d5602a043a2702c03e6bdce309c04417d3.tar.zst
dotfiles-7f96c1d5602a043a2702c03e6bdce309c04417d3.zip
Emacs: make company case-{preserving,sensitize}
-rw-r--r--emacs/.emacs.d/main.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index 8e66a8b..1b35b83 100644
--- a/emacs/.emacs.d/main.el
+++ b/emacs/.emacs.d/main.el
@@ -342,6 +342,8 @@ With two prefix arguments, write out the day and month name."
   :custom ((global-company-mode +1)
            (company-idle-delay 0)
            (company-show-numbers t)
+           (company-dabbrev-downcase nil)
+           (company-dabbrev-ignore-case nil)
            (company-begin-commands '(self-insert-command))
            (company-auto-complete #'company-explicit-action-p)
            (company-auto-complete-chars '(?\ ?\( ?\) ?.)))