Skip to content

Commit

Permalink
feat: add company and eglot-booster
Browse files Browse the repository at this point in the history
  • Loading branch information
xhcoding committed Jan 10, 2024
1 parent 1593a30 commit f775c82
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -1348,6 +1348,24 @@ ref:https://github.com/manateelazycat/toggle-one-window
(require 'acm-terminal))))
#+end_src

** company 补全

#+begin_src elisp
(use-package company
:straight t
:defer t
:bind (:map company-active-map
("TAB" . company-complete-selection)))
#+end_src

** eglot-booster 加速 eglot

#+begin_src elisp
(use-package eglot-booster
:straight (eglot-booster :type git :host github :repo "jdtsmith/eglot-booster")
:after eglot
:config (eglot-booster-mode))
#+end_src

** 启动代码服务

Expand Down Expand Up @@ -2890,8 +2908,7 @@ Wanderlust + offlineimap3 + mu
'("b" . consult-buffer)
'("r" . consult-ripgrep)

'("f" . projectile-find-file)
'("p" . projectile-switch-project)
'("f" . consult-find)

'("/" . evilnc-comment-or-uncomment-lines)

Expand Down

0 comments on commit f775c82

Please sign in to comment.