Replace icejam/ with icejam- and icejam-lang/ with icejam- namespacing
All checks were successful
/ Test config on 20 (push) Successful in 27s

This commit is contained in:
Maciej 2024-10-22 12:47:06 +03:00
parent 70418a27c3
commit 42e9ee7862
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
31 changed files with 144 additions and 140 deletions

View file

@ -15,10 +15,10 @@
:defer t
:requires (rust-mode lsp))
(defun icejam/activate-rust-mode ()
(defun icejam-activate-rust-mode ()
"All things for Rust mode."
(interactive)
(icejam/set-indent 4)
(icejam-set-indent 4)
(column-enforce-n 99)
;; Run LSP
@ -28,7 +28,7 @@
(add-to-list (make-local-variable 'company-backends)
'(company-capf company-yasnippet)))
(add-hook 'rust-mode-hook 'icejam/activate-rust-mode)
(add-hook 'rust-mode-hook 'icejam-activate-rust-mode)
(add-hook 'rust-mode-hook 'flycheck-rust-setup)
(provide 'icejam-lang-rust)