Set up Company with SLIME (successfully)

This commit is contained in:
contrapunctus 2022-01-14 12:53:35 +05:30
parent d906a78c02
commit aee17834e2
1 changed files with 6 additions and 3 deletions

View File

@ -4365,9 +4365,7 @@ All COMMAND-SPECS should be a list in the form
("M-r" . slime-repl-next-input)
("TAB" . company-indent-or-complete-common)
("C-i" . company-indent-or-complete-common))
:config
(setq slime-contribs (cons 'slime-tramp slime-contribs))
(slime-setup slime-contribs)
:config (slime-setup '(slime-fancy slime-company slime-tramp))
(setq inferior-lisp-program
;; "/usr/bin/ecl"
"sbcl"
@ -4382,6 +4380,11 @@ All COMMAND-SPECS should be a list in the form
:remote-host "tilde.team"
:username "contrapunctus"))
(add-to-list 'company-backends 'company-slime))
(use-package slime-company
:after (slime company)
:config (setq slime-company-completion 'fuzzy
slime-company-after-completion 'slime-company-just-one-space))
#+END_SRC
** Scheme