all repos — nixfiles @ db728f16997c045162041920e359666dc413ea00

System and user configuration, managed by nix and home-manager

emacs: replace company-tabnine with tabnine-capf

Alan Pearce
commit

db728f16997c045162041920e359666dc413ea00

parent

215ad38f56fd49904c20af0d38233fc61d4d51ba

1 file changed, 10 insertions(+), 0 deletions(-)

changed files
M user/overlays/extra-packages.nixuser/overlays/extra-packages.nix
@@ -1,3 +1,13 @@
self: super: { lumen = super.callPackage ../packages/lumen { }; + emacsPackagesFor = emacs: ( + (super.emacsPackagesFor emacs).overrideScope' ( + eself: esuper: + esuper // { + tabnine-capf = super.callPackage ../packages/tabnine-capf.nix { + inherit eself; + }; + } + ) + ); }