Namespace most of my custom functions
Some checks failed
/ Test config on ${{matrix.node}} (20) (push) Has been cancelled

This commit is contained in:
Maciej 2024-07-28 14:31:54 +03:00
parent dd5387cd7e
commit c2caa56b35
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
25 changed files with 82 additions and 85 deletions

View file

@ -63,7 +63,7 @@
(setq tab-stop-list (number-sequence tab-width 200 tab-width))
;; Ensure indentation in steps:
(defun set-indent (step)
(defun icejam/set-indent (step)
"Set indentation to STEP."
(interactive "NNumber of columns for one step: ")
(setq-local tab-width step)
@ -74,8 +74,14 @@
:defer t
:config (global-column-enforce-mode t))
;; Vim-like regex replace with preview in buffer.
(use-package visual-regexp :straight t :defer t)
;; PCRE to emacs regex translations
(use-package pcre2el :straight t)
;; Visual regexp
(use-package visual-regexp-steroids
:straight t
:requires (pcre2el)
:config (setq vr/engine 'pcre2el))
(provide 'icejam-prog-mode)
;;; icejam-prog-mode ends here
;;; icejam-prog-mode.el ends here