Skip to content

Commit

Permalink
fix(emacs): dirvish: use maintained fork
Browse files Browse the repository at this point in the history
  • Loading branch information
gekoke committed Aug 29, 2024
1 parent 2c04bc0 commit 91c1fe8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion modules/nixos/programs/emacs/overlay.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
_: _final: prev: {
{ fetchFromGitHub }:
_final: prev: {
lsp-mode = prev.melpaPackages.lsp-mode.overrideAttrs (_: {
LSP_USE_PLISTS = "true";
});

dirvish = prev.melpaPackages.dirvish.overrideAttrs (_: {
src = fetchFromGitHub {
owner = "hlissner";
repo = "dirvish";
rev = "5f04619";
hash = "sha256-VCTbhevhPMVVwBdkT0gdxcSOrWOs4IjdemdZJVDq9W4=";
};
});
}

0 comments on commit 91c1fe8

Please sign in to comment.