From ac1a4884d03fc0495c773500d8a13f84b695fa43 Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Wed, 11 Sep 2019 19:18:14 -0400 Subject: Init --- emacs/inits/12-company.el | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 emacs/inits/12-company.el (limited to 'emacs/inits/12-company.el') diff --git a/emacs/inits/12-company.el b/emacs/inits/12-company.el new file mode 100644 index 0000000..d514496 --- /dev/null +++ b/emacs/inits/12-company.el @@ -0,0 +1,17 @@ +;; Time-stamp: <2019-01-26 12:50:26 (tslil@winslow)> + +(use-package company :ensure t + :bind (("M-" . company-complete) + :map company-active-map + ("C-n" . company-select-next) + ("C-p" . company-select-previous)) + + :config + (setq company-begin-commands '(self-insert-command) + company-idle-delay 1 + company-require-match nil + company-show-numbers t + company-auto-complete 'company-explicit-action-p + company-tooltip-align-annotations t) + + (global-company-mode)) -- cgit v1.2.3