Diminish shackle-mode and whick-key-mode

This commit is contained in:
Ivan Malison 2015-08-16 14:43:39 -07:00
parent c84450ffcd
commit ecd2d32035

View File

@ -507,9 +507,11 @@ The current directory is assumed to be the project's root otherwise."
(use-package shackle (use-package shackle
:ensure t :ensure t
:config :config
(shackle-mode) (progn
(setq shackle-inhibit-window-quit-on-same-windows t) (diminish 'shackle-mode)
(setq shackle-default-rule '(:same t))) (shackle-mode)
(setq shackle-inhibit-window-quit-on-same-windows t)
(setq shackle-default-rule '(:same t))))
;; text mode stuff: ;; text mode stuff:
(remove-hook 'text-mode-hook #'turn-on-auto-fill) (remove-hook 'text-mode-hook #'turn-on-auto-fill)
@ -525,6 +527,7 @@ The current directory is assumed to be the project's root otherwise."
:ensure t :ensure t
:config :config
(progn (progn
(diminish 'which-key-mode)
(which-key-mode))) (which-key-mode)))
(use-package jump-char (use-package jump-char