We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d9a0aa commit 3999a99Copy full SHA for 3999a99
janet/init.el
@@ -31,8 +31,13 @@
31
;; Paredit for structural editing
32
(use-package paredit
33
:ensure t
34
- :hook ((janet-mode arepl-mode)
35
- . paredit-mode)
+ :hook ((janet-mode ajrepl-mode)
+ . (lambda ()
36
+ (paredit-mode 1)
37
+ (setq ;; To use # for comments
38
+ paredit-comment-prefix-code "#"
39
+ paredit-comment-prefix-margin "#"
40
+ paredit-comment-prefix-toplevel "#")))
41
:config
42
(defun +fix-paredit-@ ()
43
(when (char-equal ?@ (char-before (- (point) 2)))
0 commit comments