Mercurial > dotfiles
annotate .elisp/settings/10.company.el @ 372:ce87db9038f5
havepatch: new script to easily check if a mailed patch is applied
Right now this only works on the hg repo, and it assumes the patch was
applied as a descendant of 3.5 to keep the checks quick. In a perfect
world I'd be able to do this all with obsolete marker checks, but that
doesn't seem to be a good option yet.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 13 Oct 2015 11:04:51 -0400 |
parents | 46979cef73b6 |
children |
rev | line source |
---|---|
276
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
1 (require 'company) |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
2 ;; bigger popup window |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
3 (setq company-tooltip-limit 20) |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
4 ;; autocomplete right after '.' |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
5 (setq company-minimum-prefix-length 0) |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
6 ;; shorter delay before autocompletion popup |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
7 (setq company-idle-delay .3) |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
8 ;; removes annoying blinking |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
9 (setq company-echo-delay 0) |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
10 ;; start autocompletion only after typing |
46979cef73b6
emacs: require and configure company mode
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
11 (setq company-begin-commands '(self-insert-command)) |