use-package diminish instead of requiring it
This commit is contained in:
parent
3f55399c0c
commit
305d6fce40
2 changed files with 4 additions and 5 deletions
|
@ -16,7 +16,6 @@
|
||||||
config = ./emacs/init.el;
|
config = ./emacs/init.el;
|
||||||
package = pkgs.emacsPgtk;
|
package = pkgs.emacsPgtk;
|
||||||
alwaysEnsure = true;
|
alwaysEnsure = true;
|
||||||
extraEmacsPackages = epkgs: [ epkgs.diminish ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.file = {
|
home.file = {
|
||||||
|
|
|
@ -7,11 +7,11 @@
|
||||||
(setq use-package-verbose nil)
|
(setq use-package-verbose nil)
|
||||||
(setq use-package-always-ensure t))
|
(setq use-package-always-ensure t))
|
||||||
|
|
||||||
|
;; Dependencies that inject `:keywords' into `use-package' should be
|
||||||
|
;; included before all other packages.
|
||||||
;; For :diminish in (use-package).
|
;; For :diminish in (use-package).
|
||||||
(require 'diminish)
|
(use-package diminish)
|
||||||
;; For :general in (use-package). Needs to be included before
|
;; For :general in (use-package) and keybindings management.
|
||||||
;; everything else so `use-package' definitely already knows about
|
|
||||||
;; `:general'.
|
|
||||||
(use-package general
|
(use-package general
|
||||||
:config
|
:config
|
||||||
(general-evil-setup t)
|
(general-evil-setup t)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue