Add missing requires to use-package macros
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run
This commit is contained in:
parent
a82e24839c
commit
9f73e90317
19 changed files with 67 additions and 65 deletions
|
|
@ -5,7 +5,7 @@
|
|||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
|
||||
(use-package dart-mode :straight t :defer t)
|
||||
(use-package lsp-dart :defer t :straight t)
|
||||
(use-package lsp-dart :defer t :straight t :requires (dart-mode lsp))
|
||||
|
||||
(defun +custom-lang-dart/activate-dart-mode ()
|
||||
"Reconfigure dart mode for your own purposes."
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
|
||||
(use-package dhall-mode :straight t :defer t)
|
||||
(use-package dhall-mode :straight t :defer t :requires (lsp))
|
||||
|
||||
(defun +custom-lang-dhall/activate-dhall-mode ()
|
||||
"Reconfigure dhall mode for your own purposes."
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-transient "$HOME/.emacs.d/pkg/transient.el")
|
||||
|
||||
(use-package elixir-mode :requires (lsp-mode lsp-ui) :straight t)
|
||||
(use-package elixir-ts-mode :requires (lsp-mode lsp-ui) :straight t)
|
||||
(use-package elixir-mode :defer t :straight t)
|
||||
(use-package elixir-ts-mode :requires (elixir-mode lsp-mode lsp-ui) :straight t)
|
||||
|
||||
(add-to-list 'auto-mode-alist '("\\.exs\\'" . elixir-ts-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.ex\\'" . elixir-ts-mode))
|
||||
|
|
|
|||
|
|
@ -14,10 +14,8 @@
|
|||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-transient "$HOME/.emacs.d/pkg/transient.el")
|
||||
|
||||
(use-package tree-sitter-indent :straight t)
|
||||
|
||||
(use-package gleam-mode
|
||||
:requires (tree-sitter-indent)
|
||||
:requires (tree-sitter-indent lsp column-enforce-mode)
|
||||
:straight '(:type git
|
||||
:host github
|
||||
:repo "gleam-lang/gleam-mode"
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
:host github
|
||||
:repo "leanprover/lean4-mode"
|
||||
:files ("*.el" "data"))
|
||||
:requires (lsp)
|
||||
:defer t)
|
||||
|
||||
(defun activate-lean-mode ()
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
(add-to-list 'auto-mode-alist '("\\.graphqls\\'" . graphql-mode))
|
||||
|
||||
;; Yaml
|
||||
(use-package yaml-mode :straight t :defer t)
|
||||
(use-package yaml-mode :straight t :defer t :requires (lsp))
|
||||
|
||||
(defun +custom-lang-yaml/activate-yaml-mode ()
|
||||
"Activate yaml-mode."
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
(use-package flycheck-rust
|
||||
:straight t
|
||||
:defer t
|
||||
:requires (rust-mode))
|
||||
:requires (rust-mode lsp))
|
||||
|
||||
(defun activate-rust-mode ()
|
||||
"All things for Rust mode."
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
(require '+custom-pkg-ctags "$HOME/.emacs.d/pkg/ctags.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
|
||||
(use-package zig-mode :straight t :defer t)
|
||||
(use-package zig-mode :straight t :defer t :requires (lsp))
|
||||
|
||||
(defun activate-zig-mode ()
|
||||
"Goodies for editing zig files."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue