aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-05-12 13:29:38 -0300
committerEuAndreh <eu@euandre.org>2022-05-12 13:29:41 -0300
commit5d2b4afc1df30654c08955210f7a5846dfd4cb77 (patch)
tree3b5b9f328eb85fb42ae6e13916d0669080de7092
parentetc/xmonad/: Migrate existing files from dotfiles (diff)
downloaddotfiles-5d2b4afc1df30654c08955210f7a5846dfd4cb77.tar.gz
dotfiles-5d2b4afc1df30654c08955210f7a5846dfd4cb77.tar.xz
.usr/etc/guile/init.scm: Add Guile initialization file
Enable readline support and colourization.
-rw-r--r--etc/guile/init.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/guile/init.scm b/etc/guile/init.scm
new file mode 100644
index 0000000..9e962e8
--- /dev/null
+++ b/etc/guile/init.scm
@@ -0,0 +1,6 @@
+(use-modules
+ (ice-9 colorized)
+ (ice-9 readline))
+
+(activate-colorized)
+(activate-readline)