comparison .elisp/settings/10.company.el @ 276:46979cef73b6

emacs: require and configure company mode
author Augie Fackler <raf@durin42.com>
date Fri, 27 Apr 2012 16:48:48 -0500
parents
children
comparison
equal deleted inserted replaced
275:37babeba4a4a 276:46979cef73b6
1 (require 'company)
2 ;; bigger popup window
3 (setq company-tooltip-limit 20)
4 ;; autocomplete right after '.'
5 (setq company-minimum-prefix-length 0)
6 ;; shorter delay before autocompletion popup
7 (setq company-idle-delay .3)
8 ;; removes annoying blinking
9 (setq company-echo-delay 0)
10 ;; start autocompletion only after typing
11 (setq company-begin-commands '(self-insert-command))