summary refs log tree commit diff stats
path: root/user
diff options
context:
space:
mode:
authorAlan Pearce2020-02-27 13:39:26 +0100
committerAlan Pearce2020-02-27 15:58:55 +0100
commit9e32592dac3e9a75c268ea63d6cb1c16f3b51314 (patch)
tree15363f82ef2b9f925717792044e5d7fc1a604bfb /user
parentfc802929ee4877590a0929791878175f10db65bd (diff)
downloadnixfiles-9e32592dac3e9a75c268ea63d6cb1c16f3b51314.tar.lz
nixfiles-9e32592dac3e9a75c268ea63d6cb1c16f3b51314.tar.zst
nixfiles-9e32592dac3e9a75c268ea63d6cb1c16f3b51314.zip
Emacs: remove tabnine load-path override
Diffstat (limited to 'user')
-rw-r--r--user/emacs/.emacs.d/init.el6
1 files changed, 0 insertions, 6 deletions
diff --git a/user/emacs/.emacs.d/init.el b/user/emacs/.emacs.d/init.el
index 4aabc044..7dcad5c8 100644
--- a/user/emacs/.emacs.d/init.el
+++ b/user/emacs/.emacs.d/init.el
@@ -508,15 +508,9 @@ _p_rev       _u_pper              _=_: upper/lower       _r_esolve
 (use-package all-the-icons
   :config (setq all-the-icons-color-icons nil))
 
-(eval-when-compile (require 'subr-x))
-(eval-and-compile
-  (defun company-tabnine-load-path ()
-    (string-trim-right (shell-command-to-string "ghq list -p company-tabnine"))))
-
 (use-package company-tabnine
   :commands (company-tabnine)
   :after (company)
-  :load-path (lambda () (list (company-tabnine-load-path)))
   :config (setq company-tabnine-binaries-folder "~/.local/tabnine")
   :general ("<M-tab>" #'company-tabnine-call-other-backends
             "<C-tab>" #'company-tabnine-call-other-backends)