From b979bb6edc5266698f68c2d6ed8c6d4a3da0ce95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Alvari=C3=B1o?= Date: Sun, 20 Mar 2022 00:14:26 +0100 Subject: [PATCH] Add org-bullets package --- myconfig.org | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/myconfig.org b/myconfig.org index 6b47223..1542688 100644 --- a/myconfig.org +++ b/myconfig.org @@ -584,6 +584,34 @@ Quick navigation to words ("C-" . 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