emacs: use patch to set path to tabnine exe
Alan Pearce alan@alanpearce.eu
Thu, 12 Dec 2024 22:16:52 +0100
3 files changed, 7 insertions(+), 9 deletions(-)
M user/emacs/init.el → user/emacs/init.el
@@ -610,10 +610,8 @@ (add-to-list 'corfu-margin-formatters #'kind-icon-margin-formatter))) (use-package tabnine-core :config (progn - (setq tabnine-binaries-folder "~/.local/tabnine") (with-demoted-errors "TabNine error: %s" - (when (tabnine--executable-path) - (global-tabnine-mode))) + (global-tabnine-mode)) (define-key tabnine-completion-map (kbd "TAB") #'tabnine-accept-completion) (define-key tabnine-completion-map (kbd "<tab>") #'tabnine-accept-completion)
M user/modules/tabnine.nix → user/modules/tabnine.nix
@@ -71,11 +71,5 @@ programs.emacs.extraPackages = epkgs: [ epkgs.tabnine ]; - programs.emacs.extraConfig = '' - (defun my/override-tabnine-exe-path (&rest args) - "${pkgs.tabnine}/bin/TabNine") - (with-eval-after-load 'tabnine-core - (advice-add 'tabnine--executable-path :override #'my/override-tabnine-exe-path)) - ''; }; }
M user/settings/emacs.nix → user/settings/emacs.nix
@@ -185,6 +185,12 @@ }); lsp-mode = self.melpaPackages.lsp-mode.overrideAttrs { LSP_USE_PLISTS = "true"; # must be set in early-init }; + tabnine = self.melpaPackages.tabnine.overrideAttrs (attrs: { + postPatch = (attrs.postPatch or "") + '' + substituteInPlace tabnine-core.el \ + --replace '(tabnine--executable-path)' '"${pkgs.tabnine}/bin/TabNine"' + ''; + }); }; extraConfig = '' (with-eval-after-load 'editorconfig