Added my own commands and autofill to doom emacs

This commit is contained in:
Roger Gonzalez 2020-08-02 19:00:25 -03:00
parent 33e6b9dc21
commit a9ca10f1a7
2 changed files with 10 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[geometry]
posx=1739
posy=144
posx=1888
posy=108
sizex=1895
sizey=2016

View File

@ -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)