Skip to content

Commit ca2923c

Browse files
committed
tweak(window): add Nix-REPL to the REPLs display rule
1 parent ee8f74a commit ca2923c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

modules/me-window.el

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
:init
2121
(+map! "wa" #'ace-window))
2222

23+
;; Help/info buffers
2324
(add-to-list
2425
'display-buffer-alist
2526
`(,(rx bol "*" (or "info" "Printing Help" "Org Entity Help" "General Keybindings" (seq (or "Help" "helpful" "eldoc" "Tcl help" "Man " "WoMan ") (* any))) "*")
@@ -47,6 +48,7 @@
4748
(side . right)
4849
(window-width . 82)))
4950

51+
;; Terminal buffers
5052
(add-to-list
5153
'display-buffer-alist
5254
`(,(rx bol "*" (or "eshell" "terminal" "shell" "Shell Command Output" "Async Shell Command") "*" eol)
@@ -55,10 +57,12 @@
5557
(reusable-frames . visible) ;;
5658
(window-height . 0.3)))
5759

60+
;; REPL buffers
5861
(add-to-list
5962
'display-buffer-alist
6063
`(,(rx bol "*"
61-
(or "scheme" "ielm" "Python" "Inferior Octave" "maxima" "imaxima" "lua" "inferior-lisp" "prolog" "gnuplot"
64+
(or "scheme" "ielm" "Python" "Inferior Octave" "maxima" "imaxima" "lua"
65+
"inferior-lisp" "prolog" "gnuplot" "Nix-REPL"
6266
(seq (or (seq "R" (opt ":" (any digit))) "julia") ":" (* any)))
6367
"*" eol)
6468
(display-buffer-in-side-window)

0 commit comments

Comments
 (0)