From 774879ef0fbbc2881f57533e5c3459e57e595405 Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Thu, 5 Jul 2018 14:01:47 +0800 Subject: [PATCH] Update README and package descriptions. --- README.md | 10 ---------- doom-modeline.el | 11 +++++++++++ 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a7e33dd..453ab17 100644 --- a/README.md +++ b/README.md @@ -37,22 +37,12 @@ In `init.el`, (use-package doom-modeline :ensure t :defer t - :requires (shrink-path eldoc-eval) :hook (after-init . doom-modeline-init)) ``` This package requires the fonts included with `all-the-icons` to be installed. Run `M-x all-the-icons-install-fonts` to do so. -If you do not have them already installed, here are the dependencies: - -``` emacs-lisp -(use-package shrink-path) -(use-package all-the-icons) -(use-package eldoc-eval) -(use-package projectile) -``` - ## Screenshots ![modeline](https://github.com/hlissner/doom-emacs/raw/screenshots/ml.png) diff --git a/doom-modeline.el b/doom-modeline.el index 7357f40..ff00886 100644 --- a/doom-modeline.el +++ b/doom-modeline.el @@ -41,6 +41,17 @@ ;; 4. A customizable mode-line height (see doom-modeline-height) ;; 5. An error/warning count segment for flycheck ;; +;; Installation: +;; From melpa, `M-x package-install RET doom-modeline RET`. +;; In `init.el`, +;; (require 'doom-modeline) +;; (doom-modeline-init) +;; or +;; (use-package doom-modeline +;; :ensure t +;; :defer t +;; :hook (after-init . doom-modeline-init)) +;; ;;; Code: