mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
system: '.guile' skeleton now recommends 'guile-colorized'.
* gnu/system/shadow.scm (default-skeletons)[".guile"]: Recommend 'guile-colorized'.
This commit is contained in:
parent
a472c2902e
commit
10df28d74d
1 changed files with 11 additions and 1 deletions
|
@ -210,7 +210,17 @@ (define copy-guile-wm
|
|||
((module-ref module 'activate-readline))))
|
||||
(else
|
||||
(display \"Consider installing the 'guile-readline' package for
|
||||
convenient interactive line editing and input history.\\n\\n\")))\n"))
|
||||
convenient interactive line editing and input history.\\n\\n\")))
|
||||
|
||||
(unless (getenv \"INSIDE_EMACS\")
|
||||
(cond ((false-if-exception (resolve-interface '(ice-9 colorized)))
|
||||
=>
|
||||
(lambda (module)
|
||||
;; Enable completion and input history at the REPL.
|
||||
((module-ref module 'activate-colorized))))
|
||||
(else
|
||||
(display \"Consider installing the 'guile-colorized' package
|
||||
for a colorful Guile experience.\\n\\n\"))))\n"))
|
||||
(".guile-wm" ,guile-wm)
|
||||
(".gdbinit" ,gdbinit))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue