summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2019-09-04 21:17:12 -0400
committerAmin Bandali <bandali@gnu.org>2019-09-04 21:17:12 -0400
commitcce35acae705899028777fe3e3e0cafe89c13451 (patch)
tree05e9acdea33d605882a85d7e91555a8f8c827d70 /.emacs.d/init.el
parent83364e5b9720d28270760dbbe9e69a1a5b24077f (diff)
downloadconfigs-cce35acae705899028777fe3e3e0cafe89c13451.tar.gz
configs-cce35acae705899028777fe3e3e0cafe89c13451.tar.xz
configs-cce35acae705899028777fe3e3e0cafe89c13451.zip
emacs: update packages, experiment with doom-modeline a bit
also disable multi-term (haven’t really been using it)
Diffstat (limited to '')
-rw-r--r--.emacs.d/init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 6068a1c..deb88ba 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -1466,6 +1466,13 @@ This function is intended for use with `ivy-ignore-buffers'."
(sml/setup)
(smart-mode-line-enable))
+(use-package doom-modeline
+ :disabled
+ :demand
+ :hook (after-init . doom-modeline-init)
+ :custom
+ (doom-modeline-buffer-file-name-style 'relative-to-project))
+
(use-package doom-themes)
(defvar b/org-mode-font-lock-keywords
@@ -1691,6 +1698,7 @@ This function is intended for use with `ivy-ignore-buffers'."
:commands eshell-up)
(use-package multi-term
+ :disabled
:defer 0.6
:bind (("C-c a s m m" . multi-term)
("C-c a s m d" . multi-term-dedicated-toggle)