Emacs: No delay for company.

This commit is contained in:
tastytea 2020-01-25 05:39:52 +01:00
parent 1f158955ec
commit 6563e1bb1b

View File

@ -1,6 +1,6 @@
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-25T03:46:02+0100>
;; Time-stamp: <2020-01-25T05:33:07+0100>
;;; Commentary:
@ -66,10 +66,10 @@
:custom
;; Show suggestions after entering one character.
(company-minimum-prefix-length 1)
;; Wrap around at end/beginning of list.
(company-selection-wrap-around t)
;; Align annotation to the right border.
(company-selection-wrap-around t) ; Wrap around at end/beginning of list.
; Align annotation to the right border.
(company-tooltip-align-annotations t)
(company-idle-delay 0) ; No delay.
:bind
(:map company-active-map