summary refs log tree commit diff stats
path: root/user/settings
diff options
context:
space:
mode:
authorAlan Pearce2024-12-12 22:16:52 +0100
committerAlan Pearce2024-12-12 22:16:52 +0100
commit1d1492faf63e7c5f0101bcb66cd769feb737c60d (patch)
tree47be209ac2acdeb63342920577f9b40003876174 /user/settings
parent64b978c3caecdb236765ac1636ba6d1864c8ebee (diff)
downloadnixfiles-1d1492faf63e7c5f0101bcb66cd769feb737c60d.tar.lz
nixfiles-1d1492faf63e7c5f0101bcb66cd769feb737c60d.tar.zst
nixfiles-1d1492faf63e7c5f0101bcb66cd769feb737c60d.zip
emacs: use patch to set path to tabnine exe
Diffstat (limited to 'user/settings')
-rw-r--r--user/settings/emacs.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/user/settings/emacs.nix b/user/settings/emacs.nix
index db3a29fa..73a3b55a 100644
--- a/user/settings/emacs.nix
+++ b/user/settings/emacs.nix
@@ -185,6 +185,12 @@ in
       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