diff options
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/init.el | 8 |
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) |