diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-08-02 15:10:16 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-08-02 15:10:16 -0700 |
commit | 86d1832ce0d7f02ad1b6b8b80dd0a5d8e24948f8 (patch) | |
tree | e81f185b1d50ac5cfb2764157577ade9849f5ea2 /emacs | |
parent | [emacs] update grouping in ibuffer (diff) | |
download | emacs.d-86d1832ce0d7f02ad1b6b8b80dd0a5d8e24948f8.tar.gz |
[emacs] company update
add a few more variables for that module
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-company.el | 8 |
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) |