Install speedbar and its Projectile extension

This commit is contained in:
Gergely Polonkai 2019-12-09 06:11:18 +01:00
parent b6d5f61bd7
commit 1e278a8540
No known key found for this signature in database
GPG Key ID: 38F402C8471DDE93
2 changed files with 25 additions and 0 deletions

View File

@ -1481,6 +1481,12 @@ I dont usually like to see them, but there are occasions when they can be use
(message-send . ispell-message)) (message-send . ispell-message))
#+END_SRC #+END_SRC
** Speed bar
#+BEGIN_SRC emacs-lisp
(use-package speedbar)
#+END_SRC
* ~use-package~ packages * ~use-package~ packages
** Make sure we have the latest ELPA GPG keys ** Make sure we have the latest ELPA GPG keys
@ -2340,6 +2346,23 @@ accompanying function will be added to ~mu4e-view-mode-hook~.
(use-package transient) (use-package transient)
#+END_SRC #+END_SRC
** Speed bar in the same frame
#+BEGIN_SRC emacs-lisp
(use-package sr-speedbar
:after speedbar)
#+END_SRC
** Speedbar for projectile
#+BEGIN_SRC emacs-lisp
(use-package projectile-speedbar
:after (:all projectile sr-speedbar)
:bind
(:map projectile-mode-map
("C-c p B" . projectile-speedbar-toggle)))
#+END_SRC
* Dired related packages * Dired related packages
** Collapse directories that only contain one file somewhere deep ** Collapse directories that only contain one file somewhere deep

View File

@ -186,6 +186,7 @@
plantuml-mode plantuml-mode
po-mode po-mode
projectile projectile
projectile-speedbar
pycoverage pycoverage
python-x python-x
pyvenv pyvenv
@ -199,6 +200,7 @@
smartparens smartparens
sphinx-doc sphinx-doc
spinner spinner
sr-speedbar
sx sx
transient transient
typescript-mode typescript-mode