summary refs log tree commit diff stats
path: root/emacs/.emacs.d/main.el
diff options
context:
space:
mode:
authorAlan Pearce2019-07-03 18:46:48 +0200
committerAlan Pearce2019-07-03 18:46:48 +0200
commit2bce042f41e444b31a33b973ed24c69aa13ca63f (patch)
tree475821409d9bce67c16c4f183af6c9c258e7a104 /emacs/.emacs.d/main.el
parent9a57fc18816f2688c9a8f3c59f4a3cbe34350aba (diff)
downloaddotfiles-2bce042f41e444b31a33b973ed24c69aa13ca63f.tar.lz
dotfiles-2bce042f41e444b31a33b973ed24c69aa13ca63f.tar.zst
dotfiles-2bce042f41e444b31a33b973ed24c69aa13ca63f.zip
Emacs: appease the byte compiler
Diffstat (limited to 'emacs/.emacs.d/main.el')
-rw-r--r--emacs/.emacs.d/main.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index 5ca765b..fc5cbce 100644
--- a/emacs/.emacs.d/main.el
+++ b/emacs/.emacs.d/main.el
@@ -10,7 +10,7 @@
 
 (use-package exec-path-from-shell
   :if (eq system-type 'darwin)
-  :functions (exec-path-from-shell-initialize)
+  :commands (exec-path-from-shell-initialize)
   :custom ((exec-path-from-shell-arguments nil)
            (exec-path-from-shell-debug t))
   :config (progn
@@ -323,6 +323,7 @@ With two prefix arguments, write out the day and month name."
 (use-package all-the-icons)
 
 (use-package company-tabnine
+  :commands (company-tabnine)
   :general ([remap completion-at-point] #'company-tabnine-call-other-backends
             [remap complete-symbol] #'company-tabnine-call-other-backends
             "<C-tab>" #'company-tabnine-call-other-backends)