diff --git a/.emacs.d/main.el b/.emacs.d/main.el index 7f197a31..5bc7eec2 100644 --- a/.emacs.d/main.el +++ b/.emacs.d/main.el @@ -245,3 +245,11 @@ (other-window 1)) ;; Set GUD to display many windows by default. (setq gdb-many-windows t) + +;; Support for dwb edit. +(add-hook + 'find-file-hook + (lambda () + (if (string-match "edit*" (buffer-name)) + (auto-fill-mode -1)))) +