summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2019-08-02 15:10:16 -0700
committerFranck Cuny <fcuny@twitter.com>2019-08-02 15:10:16 -0700
commit86d1832ce0d7f02ad1b6b8b80dd0a5d8e24948f8 (patch)
treee81f185b1d50ac5cfb2764157577ade9849f5ea2 /emacs.d
parent[emacs] update grouping in ibuffer (diff)
downloademacs.d-86d1832ce0d7f02ad1b6b8b80dd0a5d8e24948f8.tar.gz
[emacs] company update
add a few more variables for that module
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/custom/fcuny-company.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-company.el b/emacs.d/custom/fcuny-company.el
index 0ea1fad..a58a15e 100644
--- a/emacs.d/custom/fcuny-company.el
+++ b/emacs.d/custom/fcuny-company.el
@@ -1,5 +1,11 @@
 (use-package company
   :ensure t
-  :diminish company-mode)
+  :diminish company-mode
+
+  :custom
+  (company-minimum-prefix-length 2)
+  (company-tooltip-align-annotations t)
+  (company-tooltip-limit 12)
+  (company-idle-delay 0))
 
 (provide 'fcuny-company)