Minor reformatting & comment tweaks

This commit is contained in:
Henrik Lissner 2018-08-21 02:57:40 +02:00
parent a7da9a4738
commit ee73d6c9af
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 3 additions and 3 deletions

View file

@ -228,7 +228,6 @@ original value of `symbol-file'."
;; Custom hooks ;; Custom hooks
;; ;;
(defvar doom-init-hook nil (defvar doom-init-hook nil
"Hooks run after all init.el files are loaded, including your private and all "Hooks run after all init.el files are loaded, including your private and all
module init.el files, but before their config.el files are loaded.") module init.el files, but before their config.el files are loaded.")

View file

@ -59,7 +59,7 @@ be negative.")
[remap recentf-open-files] #'helm-recentf) [remap recentf-open-files] #'helm-recentf)
:config :config
(helm-mode +1) (helm-mode +1)
;; helm is too heavy for find-file-at-point ;; helm is too heavy for `find-file-at-point'
(add-to-list 'helm-completing-read-handlers-alist (cons #'find-file-at-point nil))) (add-to-list 'helm-completing-read-handlers-alist (cons #'find-file-at-point nil)))

View file

@ -63,6 +63,7 @@
(set-company-backend! 'sh-mode '(company-shell company-files)) (set-company-backend! 'sh-mode '(company-shell company-files))
(setq company-shell-delete-duplicates t)) (setq company-shell-delete-duplicates t))
(def-package! fish-mode (def-package! fish-mode
:when (featurep! +fish) :when (featurep! +fish)
:defer t :defer t

View file

@ -449,6 +449,6 @@ controlled by `+doom-dashboard-pwd-policy'."
(propertize "github" 'face 'font-lock-keyword-face)) (propertize "github" 'face 'font-lock-keyword-face))
'action (lambda (_) (browse-url "https://github.com/hlissner/doom-emacs")) 'action (lambda (_) (browse-url "https://github.com/hlissner/doom-emacs"))
'follow-link t 'follow-link t
'help-echo "Open github page") 'help-echo "Open Doom Emacs github page")
(buffer-string))) (buffer-string)))
"\n")) "\n"))