summaryrefslogtreecommitdiff
path: root/emacs/init.el
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2025-06-24 09:19:58 -0700
committerThomas Ulmer <thomasmulmer02@gmail.com>2025-06-24 09:19:58 -0700
commit3f14124135d0b7bfad1fc7466f06cdb2a0448aca (patch)
tree481df411661caf4e2f7b74c0a1d1fa79da1b9b71 /emacs/init.el
parent5ee3bd8dd75d78b0004abd94f01f1bfe03e3c812 (diff)
ispell name change and display battery
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index e1e938c..a6e2512 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -919,7 +919,9 @@ BEG and END define the region."
:custom
(ispell-personal-dictionary "/home/tmu/.aspell.en.pws")
:hook
- (text-mode . 'ispell-minor-mode))
+ (text-mode . 'ispell-minor-mode)
+ :config
+ (setq text-mode-hook (remove 'ispell-mode text-mode-hook)))
(electric-pair-mode 1)
@@ -963,6 +965,11 @@ BEG and END define the region."
(display-time-day-and-date t)
(display-time-24hr-format t))
+(use-package battery
+ :demand t
+ :config
+ (display-battery-mode 1))
+
(use-package ednc
:demand t
:config