In-buffer-completion: Add company-mode
This commit is contained in:
parent
a68f566cd9
commit
75bda91171
1 changed files with 13 additions and 0 deletions
13
config.org
13
config.org
|
|
@ -491,6 +491,19 @@ C-c C-c to apply."
|
|||
(global-corfu-mode))
|
||||
#+end_src
|
||||
|
||||
*** Company-mode
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package company
|
||||
:config
|
||||
(define-key prog-mode-map
|
||||
(kbd "TAB")
|
||||
#'company-indent-or-complete-common)
|
||||
:init
|
||||
(global-company-mode)
|
||||
)
|
||||
#+END_SRC
|
||||
|
||||
** Orderless
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue