Add guile config
This commit is contained in:
parent
9688f5c7a3
commit
dc8a304a56
1 changed files with 18 additions and 0 deletions
18
guile/.guile
Normal file
18
guile/.guile
Normal file
|
@ -0,0 +1,18 @@
|
|||
(cond ((false-if-exception (resolve-interface '(ice-9 readline)))
|
||||
=>
|
||||
(lambda (module)
|
||||
;; Enable completion and input history at the REPL.
|
||||
((module-ref module 'activate-readline))))
|
||||
(else
|
||||
(display "Consider installing the 'guile-readline' package for
|
||||
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"))))
|
Loading…
Reference in a new issue