|
|
|
@ -584,6 +584,34 @@ Quick navigation to words
|
|
|
|
|
("C-<iso-lefttab>" . company-complete-common-or-cycle)
|
|
|
|
|
)
|
|
|
|
|
#+end_src
|
|
|
|
|
** company-quickhelp
|
|
|
|
|
In case you want popup help instead of status line help
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
(use-package company-quickhelp
|
|
|
|
|
:config
|
|
|
|
|
(company-quickhelp-mode)
|
|
|
|
|
;; (setq company-quickhelp-delay nil) ; Uncoment to disable quickhelp (default 0.5)
|
|
|
|
|
)
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
** company-lsp (**DEPRECATED**)
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
;; (use-package company-lsp
|
|
|
|
|
;; :ensure
|
|
|
|
|
;; :config
|
|
|
|
|
;; (push 'company-lsp company-backends)
|
|
|
|
|
;; )
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
* org-mode
|
|
|
|
|
** org-bullets
|
|
|
|
|
Nice bullets for org-mode
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
(use-package org-bullets
|
|
|
|
|
:config
|
|
|
|
|
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
|
|
|
|
|
)
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
* next
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|