chore: use symbol instead of string for with-eval-after-load

This commit is contained in:
2022-10-05 00:18:59 +01:00
parent 6bf20de60e
commit 8d232d4b2b
3 changed files with 4 additions and 4 deletions

View File

@@ -66,7 +66,7 @@
:lighter " GOLINES"))
:init
(with-eval-after-load "projectile"
(with-eval-after-load 'projectile
(add-to-list 'projectile-globally-ignored-directories "Godeps")
(add-to-list 'projectile-globally-ignored-directories "vendor/github.com")
(add-to-list 'projectile-globally-ignored-directories "vendor/gopkg.in"))

View File

@@ -65,7 +65,7 @@
(subword-mode t))
:init
(with-eval-after-load "projectile"
(with-eval-after-load 'projectile
(add-to-list 'projectile-globally-ignored-directories "vendor/bundle")
(add-to-list 'projectile-globally-ignored-directories "vendor/ruby"))

View File

@@ -15,11 +15,11 @@
"C-<return>" 'zoom-window-zoom)
:config
(with-eval-after-load "persp-mode"
(with-eval-after-load 'persp-mode
(setq zoom-window-use-persp t)
(zoom-window-setup))
(with-eval-after-load "elscreen"
(with-eval-after-load 'elscreen
(setq zoom-window-use-elscreen t)
(zoom-window-setup)))