chore(emacs): Install markdown-mode from unstable

The stable version does not seem to contain `gfm-view-mode` which is
required by LSP.

If it's not available the side-effect is nasty freezes of the entire
emacs session.
This commit is contained in:
Vincent Ambo 2018-05-08 23:44:34 +02:00
parent 2a70e4e56c
commit 4a3d61555c
2 changed files with 14 additions and 13 deletions

View file

@ -94,7 +94,6 @@ in emacsWithPackages(epkgs:
intero
kotlin-mode
magit
markdown-mode
multi-term
multiple-cursors
nginx-mode

View file

@ -42,18 +42,20 @@ in {
# Override various Emacs packages from unstable:
pinnedEmacs = with unstable.emacsPackagesNg; {
counsel = melpaPackages.counsel;
counsel-tramp = melpaPackages.counsel-tramp;
company-lsp = company-lsp;
exwm = elpaPackages.exwm;
ivy = melpaPackages.ivy;
ivy-gitlab = melpaPackages.ivy-gitlab;
ivy-hydra = melpaPackages.ivy-hydra;
ivy-pass = melpaPackages.ivy-pass;
swiper = melpaPackages.swiper;
lsp-mode = lsp-mode;
lsp-rust = lsp-rust;
lsp-ui = lsp-ui;
inherit
company-lsp
counsel
counsel-tramp
exwm
ivy
ivy-gitlab
ivy-hydra
ivy-pass
lsp-mode
lsp-rust
lsp-ui
markdown-mode
swiper;
};
};
};