diff options
Diffstat (limited to 'config/common.el')
-rw-r--r-- | config/common.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/config/common.el b/config/common.el index c6539be..fc75d18 100644 --- a/config/common.el +++ b/config/common.el @@ -1,11 +1,11 @@ ;; -*- lexical-binding: t; -*- (setq - gc-cons-threshold 200000000 make-backup-files nil auto-save-default nil visible-bell t - inhibit-startup-screen t) + inhibit-startup-screen t + read-process-output-max (* 1024 1024 8)) (defalias 'yes-or-no-p 'y-or-n-p) @@ -19,13 +19,17 @@ (use-package doom-modeline :ensure t - :hook (after-init . doom-modeline-mode)) + :hook (after-init . doom-modeline-mode) + :config + (setq doom-modeline-time nil + doom-modeline-battery t)) (use-package nyan-mode :ensure t :init (nyan-mode) - (setq nyan-wavy-trail t)) + (setq nyan-wavy-trail t + nyan-bar-length 14)) (use-package nerd-icons :ensure t) |