git.fiddlerwoaroof.com
Browse code

finished splitting things up

Ed Langley authored on 14/09/2018 16:42:01
Showing 3 changed files
... ...
@@ -213,7 +213,6 @@
213 213
 (global-set-key (kbd "s-v") 'yank)
214 214
 
215 215
 (setq custom-file "~/.emacs.d/custom.el")
216
-(load-file custom-file)
217 216
 
218 217
 (defun edit-init-el ()
219 218
   (interactive)
... ...
@@ -295,4 +294,4 @@
295 294
    (setq org-brain-visualize-default-choices 'all)
296 295
    (setq org-brain-title-max-length 12)))
297 296
 
298
-(message (format "s-c-c is: %s" slime-company-completion))
297
+(load-file custom-file)
... ...
@@ -14,8 +14,8 @@
14 14
         (concat "file://" common-lisp-hyperspec-root)))
15 15
 
16 16
 ;; Replace "sbcl" with the path to your implementation
17
-(setq inferior-lisp-program "~/sbcl/bin/sbcl")
18
-
17
+(setq inferior-lisp-program "~/sbcl/bin/sbcl"
18
+      slime-company-completion 'fuzzy) 
19 19
 (add-hook 'lisp-mode-hook
20 20
           '(lambda ()
21 21
              ;;(define-key evil-insert-state-map "^N" 'slime-fuzzy-indent-and-complete-symbol)
... ...
@@ -151,6 +151,7 @@ started from a shell."
151 151
   (set-exec-path-from-shell-PATH)
152 152
   ;; NOTE: this must be here...
153 153
   (global-company-mode 1)
154
+  (message (format "s-c-c is: %s" slime-company-completion))
154 155
   (slime-setup))
155 156
 
156 157
 (defun cold-boot ()