diff options
author | Alan Pearce | 2023-06-16 17:05:06 +0200 |
---|---|---|
committer | Alan Pearce | 2023-06-16 17:05:06 +0200 |
commit | ae2cc8c4747b393f158e2dfa4304505775895df2 (patch) | |
tree | 1fb0f44942149e1c4c7fa4f9b81c649a4ef31252 /user/settings | |
parent | be6236a872079b144d4abdeace1d34b528447136 (diff) | |
download | nixfiles-ae2cc8c4747b393f158e2dfa4304505775895df2.tar.lz nixfiles-ae2cc8c4747b393f158e2dfa4304505775895df2.tar.zst nixfiles-ae2cc8c4747b393f158e2dfa4304505775895df2.zip |
Emacs: install forked version of consult-ghq
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/emacs.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/user/settings/emacs.nix b/user/settings/emacs.nix index f03d108d..195bc0fe 100644 --- a/user/settings/emacs.nix +++ b/user/settings/emacs.nix @@ -45,6 +45,28 @@ in ../modules/eshell.nix ]; + nixpkgs.overlays = [ + (self: super: { + emacsPackagesFor = emacs: + (super.emacsPackagesFor emacs).overrideScope' ( + eself: esuper: + ( + { + consult-ghq = esuper.consult-ghq.overrideAttrs + (oldAttrs: { + src = pkgs.fetchFromGitHub { + owner = "alanpearce"; + repo = "consult-ghq"; + rev = "3a0b366ef2e066c0d941a19d22d5a23d7f778535"; + sha256 = "0v7z61nx6xyhxbqkjangqrnay7pp74w4m90wfb29l99p1wkxqbzx"; + }; + }); + } + ) + ); + }) + ]; + programs.emacs = { enable = true; package = lib.mkDefault (pkgs.emacs.override { withGTK3 = true; }); @@ -90,6 +112,7 @@ in company-shell company-tabnine consult + consult-ghq # own override consult-eglot counsel crux |