summaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-04-30 09:21:00 +0300
committerThanos Apollo <[email protected]>2023-04-30 09:21:00 +0300
commite766381ebd99928b073b45a06038d14a18bbda92 (patch)
tree6802b8c2b3feff8966d656d73bb08bfe8a04c667 /.emacs.d
parent47def751dfbc18ebd96f9a12a19d2be3dcee5024 (diff)
emacs: Add slime-company and bind password-store generate
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 472b35e..f2026a2 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -561,6 +561,11 @@ Contains the list of packages that need to be installed.")
:config
(setq inferior-lisp-program "sbcl"))
+(use-package slime-company
+ :after (slime company)
+ :config (setq slime-company-completion 'fuzzy
+ slime-company-after-completion 'slime-company-just-one-space))
+
(defun apollo/lsp-mode-setup ()
(setq lsp-headerline-breadcrumb-segments '(path-up-to-project file symbols))
(lsp-headerline-breadcrumb-mode))
@@ -942,7 +947,7 @@ Contains the list of packages that need to be installed.")
;; Pass
(global-set-key (kbd "C-c p i") 'password-store-insert)
(global-set-key (kbd "C-c p e") 'password-store-edit)
-
+(global-set-key (kbd "C-c p g") 'password-store-generate)
(define-prefix-command 'thanos/applications-map)