summaryrefslogtreecommitdiff
path: root/.doom.d/config.el
diff options
context:
space:
mode:
Diffstat (limited to '.doom.d/config.el')
-rw-r--r--.doom.d/config.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el
index f5dfa497..c29567b1 100644
--- a/.doom.d/config.el
+++ b/.doom.d/config.el
@@ -208,5 +208,11 @@
(map! :leader
(:prefix-map ("a" . "applications")
;; ispell
- :desc "ispell" "i" #'ispell
- :desc "http_status" "h" #'helm-httpstatus))
+ :desc "Open eshell" "e" #'eshell
+ :desc "HTTP Status cheatsheet" "h" #'helm-httpstatus
+ :desc "Run ispell" "i" #'ispell
+ ))
+
+;; Autofill mode
+(add-hook 'text-mode-hook 'auto-fill-mode)
+(setq-default fill-column 80)