about summary refs log tree commit diff
path: root/init.el
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2018-06-28T09·02+0200
committerVincent Ambo <github@tazj.in>2019-02-10T20·43+0100
commit660fc549f4c1d67f1206d4a2cd9e7ca4f4de33de (patch)
treebb462588d96f1974c73342afaff2e9dd0f488299 /init.el
parent47ba177c00d7009725a80755d9e5880053a6bcdf (diff)
feat(init): Reintroduce sly configuration
Sly is back!
Diffstat (limited to 'init.el')
-rw-r--r--init.el26
1 files changed, 13 insertions, 13 deletions
diff --git a/init.el b/init.el
index 74b87e968e..4567024122 100644
--- a/init.el
+++ b/init.el
@@ -66,7 +66,7 @@
 (use-package s)
 (use-package smartparens :init (smartparens-global-mode))
 (use-package string-edit)
-(use-package telephone-line :init (telephone-line-setup))
+(use-package telephone-line) ;; configuration happens outside of use-package
 (use-package undo-tree :init (global-undo-tree-mode))
 (use-package uuidgen)
 (use-package which-key :init (which-key-mode t))
@@ -139,11 +139,6 @@
 (use-package web-mode)
 (use-package yaml-mode)
 
-;; (use-package sly
-;;   :init
-;;   (setq inferior-lisp-program (concat (nix-store-path "sbcl") "/bin/sbcl"))
-;;   (add-to-list 'company-backends 'sly-company))
-
 ;;
 ;; EXWM / NixOS related packages
 ;;
@@ -152,16 +147,11 @@
 (setq custom-file (concat user-emacs-directory "init/custom.el"))
 (load custom-file)
 
-(defvar home-dir)
-(setq home-dir (expand-file-name "~"))
+(defvar home-dir (expand-file-name "~"))
 
 ;; Seed RNG
 (random t)
 
-;; Load configuration that makes use of installed packages:
-
-;; Emacs will automatically initialise all installed packages.
-;; After initialisation, proceed to load configuration that requires packages:
 (defun load-other-settings ()
   (mapc 'require '(nixos
 		   mail-setup
@@ -172,7 +162,17 @@
                    bindings
                    term-setup
                    eshell-setup
-                   )))
+                   ))
+  (telephone-line-setup)
+
+  (use-package sly
+    :init (setq inferior-lisp-program (concat (nix-store-path "sbcl") "/bin/sbcl"))
+    ;;(add-to-list 'company-backends 'sly-company)
+    ))
+
+;; Some packages can only be initialised after the rest of the
+;; settings has been applied:
+
 
 (add-hook 'after-init-hook 'load-other-settings)
 (put 'narrow-to-region 'disabled nil)