refactor(wpcarro/emacs): Drop meta.ci.extraSteps
...in favor of `meta.targets = [ "check" ]`. Change-Id: I08b035b7d7bbe5ef4eab10a9f55481048c67330a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5104 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
This commit is contained in:
parent
4b8998c9c8
commit
45da3bce86
4 changed files with 27 additions and 31 deletions
|
|
@ -225,8 +225,9 @@
|
|||
|
||||
(use-package yasnippet
|
||||
:config
|
||||
(setq yas-snippet-dirs (list (f-join user-emacs-directory "snippets")))
|
||||
(yas-global-mode 1))
|
||||
(unless constants-ci?
|
||||
(setq yas-snippet-dirs (list (f-join user-emacs-directory "snippets")))
|
||||
(yas-global-mode 1)))
|
||||
|
||||
(use-package projectile
|
||||
:config
|
||||
|
|
|
|||
|
|
@ -110,16 +110,17 @@
|
|||
(use-package ivy-prescient
|
||||
:config
|
||||
(ivy-prescient-mode 1)
|
||||
(prescient-persist-mode 1))
|
||||
(unless constants-ci?
|
||||
(prescient-persist-mode 1)))
|
||||
|
||||
(use-package ivy-pass)
|
||||
|
||||
;; all-the-icons
|
||||
(use-package all-the-icons
|
||||
:config
|
||||
(when (not constants-ci?)
|
||||
(unless (f-exists? "~/.local/share/fonts/all-the-icons.ttf")
|
||||
(all-the-icons-install-fonts t))))
|
||||
(unless (or constants-ci?
|
||||
(f-exists? "~/.local/share/fonts/all-the-icons.ttf"))
|
||||
(all-the-icons-install-fonts t)))
|
||||
|
||||
;; icons for Ivy
|
||||
(use-package all-the-icons-ivy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue