Reorganize core.el and core-editor.el

This commit is contained in:
Henrik Lissner 2016-10-02 23:21:47 +02:00
parent ad12b9057b
commit eba34446a3
2 changed files with 60 additions and 72 deletions

View file

@ -205,6 +205,10 @@
(overlay-put ov 'before-string marker-string)
(overlay-put ov 'display display-string))))))
(use-package help-fns+ ; Improved help commands
:commands (describe-buffer describe-command describe-file
describe-keymap describe-option describe-option-of-type))
(use-package imenu-list
:commands imenu-list-minor-mode
:config
@ -271,6 +275,13 @@
(sp-with-modes '(xml-mode nxml-mode php-mode)
(sp-local-pair "<!--" "-->" :post-handlers '(("| " "SPC")))))
(use-package smex
:commands (smex smex-major-mode-commands)
:config
(setq smex-completion-method 'ivy
smex-save-file (concat doom-temp-dir "/smex-items"))
(smex-initialize))
(use-package swiper :commands (swiper swiper-all))
(use-package wgrep