summaryrefslogtreecommitdiff
path: root/.doom.d/config.el
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2020-08-02 19:00:25 -0300
committerRoger Gonzalez <roger@rogs.me>2020-08-02 19:00:25 -0300
commita9ca10f1a7aa8fb9b4843fe08ff0b6e3ed3a2016 (patch)
treedb97411b53dca7298a40ba969d72332d6c8d78e8 /.doom.d/config.el
parent33e6b9dc2151daccf852fff9f7fe4a91fc40ef6f (diff)
Added my own commands and autofill to doom emacs
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)