about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-14 10:05:47 -0500
committerCase Duckworth2021-04-14 10:05:47 -0500
commit627350d33dd83fc39d48b8b6fc61f76868d3cff4 (patch)
treec2aa808470feab85c7b5d4291e786dc24ad81e91 /init.el
parentRemove company-active-map keys (diff)
parentChange (insert "\n\n") -> (newline) (diff)
downloademacs-627350d33dd83fc39d48b8b6fc61f76868d3cff4.tar.gz
emacs-627350d33dd83fc39d48b8b6fc61f76868d3cff4.zip
Merge branch 'main' of https://tildegit.org/acdw/emacs
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el index e7999cd..bee4ca9 100644 --- a/init.el +++ b/init.el
@@ -735,6 +735,11 @@ if ripgrep is installed, otherwise `consult-grep'."
735(setup (:straight company) 735(setup (:straight company)
736 (:hook-into prog-mode) 736 (:hook-into prog-mode)
737 (:hook company-tng-mode) 737 (:hook company-tng-mode)
738
739 (if (eq acdw/system :home)
740 (setq company-idle-delay 0.25)
741 (setq company-idle-delay nil))
742
738 (:global "M-/" company-complete) 743 (:global "M-/" company-complete)
739 (:with-map company-active-map 744 (:with-map company-active-map
740 (:bind "C-d" company-show-doc-buffer 745 (:bind "C-d" company-show-doc-buffer