doom_bankruptcy #14

Merged
james merged 8 commits from doom_bankruptcy into master 2021-04-10 20:29:00 +00:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit bad2de65e2 - Show all commits

8
emacs/+company.el Normal file
View File

@ -0,0 +1,8 @@
;;; +company.el -*- lexical-binding: t; -*-
;; Make company a little faster to respond.
(after! company
(setq company-idle-delay 0.5
company-minimum-prefix-length 2)
(setq company-show-numbers t)
(add-hook 'evil-normal-state-entry-hook #'company-abort)) ;; make aborting less annoying.

View File

@ -21,3 +21,4 @@
(load! "+mail") (load! "+mail")
(load! "+org") (load! "+org")
(load! "+company")