system: Add a default '.guile' skeleton.

* gnu/system/shadow.scm (default-skeletons): Add ".guile".
This commit is contained in:
Ludovic Courtès 2017-07-25 12:23:26 +02:00
parent 585347d7aa
commit a84ea2191e
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -189,6 +189,11 @@ (define copy-guile-wm
(".bashrc" ,bashrc)
(".zlogin" ,zlogin)
(".Xdefaults" ,xdefaults)
(".guile" ,(plain-file "dot-guile"
(string-append
"(use-modules (ice-9 readline))\n\n"
";; Enable completion at the REPL.\n"
"(activate-readline)\n")))
(".guile-wm" ,guile-wm)
(".gdbinit" ,gdbinit))))